finished read through of SlippiExiTypes.cpp

This commit is contained in:
Nikhil Narayana 2023-08-20 17:04:14 -07:00
commit 4635960038
No known key found for this signature in database
GPG key ID: 1B34839FA8D6245E
2 changed files with 2 additions and 2 deletions

View file

@ -3054,7 +3054,7 @@ void CEXISlippi::handleGetPlayerSettings()
for (int j = 0; j < 16; j++)
{
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());
}
}

View file

@ -82,7 +82,7 @@ struct OverwriteSelectionsQuery
struct PlayerSettings
{
char chatMessages[16][51];
char chat_messages[16][51];
};
struct GetPlayerSettingsResponse
{