This commit is contained in:
Christian Semmler 2025-06-16 21:36:07 -07:00
parent 40f44881b3
commit 86eccaaca4
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ struct ColorStringStruct {
}; };
struct InternationalCharacter { struct InternationalCharacter {
char32_t m_character; unsigned char m_character;
const char* m_bitmap; const char* m_bitmap;
MxU32 m_buttonId; MxU32 m_buttonId;
}; };

View File

@ -144,7 +144,7 @@ const char* g_strEnable = "enable";
const char* g_strDisable = "disable"; const char* g_strDisable = "disable";
const InternationalCharacter LegoGameState::g_intCharacters[4] = const InternationalCharacter LegoGameState::g_intCharacters[4] =
{{'\xe4', "Aum_Bitmap", 29}, {'\xf6', "Oum_Bitmap", 30}, {'\xdf', "Beta_Bitmap", 31}, {'\xfc', "Uum_Bitmap", 32}}; {{0xe4, "Aum_Bitmap", 29}, {0xf6, "Oum_Bitmap", 30}, {0xdf, "Beta_Bitmap", 31}, {0xfc, "Uum_Bitmap", 32}};
// FUNCTION: LEGO1 0x10039550 // FUNCTION: LEGO1 0x10039550
LegoGameState::LegoGameState() LegoGameState::LegoGameState()