mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-26 12:16:20 +00:00
finished read through of SlippiExiTypes.cpp
This commit is contained in:
parent
e063e722c1
commit
4635960038
2 changed files with 2 additions and 2 deletions
|
@ -3054,7 +3054,7 @@ void CEXISlippi::handleGetPlayerSettings()
|
||||||
for (int j = 0; j < 16; j++)
|
for (int j = 0; j < 16; j++)
|
||||||
{
|
{
|
||||||
auto str = ConvertStringForGame(messages_by_player[i][j], MAX_MESSAGE_LENGTH);
|
auto str = ConvertStringForGame(messages_by_player[i][j], MAX_MESSAGE_LENGTH);
|
||||||
sprintf(resp.settings[i].chatMessages[j], "%s", str.c_str());
|
sprintf(resp.settings[i].chat_messages[j], "%s", str.c_str());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -82,7 +82,7 @@ struct OverwriteSelectionsQuery
|
||||||
|
|
||||||
struct PlayerSettings
|
struct PlayerSettings
|
||||||
{
|
{
|
||||||
char chatMessages[16][51];
|
char chat_messages[16][51];
|
||||||
};
|
};
|
||||||
struct GetPlayerSettingsResponse
|
struct GetPlayerSettingsResponse
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue