This commit is contained in:
Christian Semmler 2025-06-16 21:31:27 -07:00
parent 40517a53a8
commit 40f44881b3
2 changed files with 3 additions and 3 deletions

View File

@ -24,9 +24,9 @@ struct ColorStringStruct {
}; };
struct InternationalCharacter { struct InternationalCharacter {
unsigned char m_character; char32_t m_character;
const char* m_bitmap; const char* m_bitmap;
MxU32 buttonId; MxU32 m_buttonId;
}; };
// VTABLE: LEGO1 0x100d74a8 // VTABLE: LEGO1 0x100d74a8

View File

@ -244,7 +244,7 @@ MxLong RegistrationBook::HandleControl(LegoControlManagerNotificationParam& p_pa
const InternationalCharacter* intChar = NULL; const InternationalCharacter* intChar = NULL;
for (int i = 0; i < sizeOfArray(m_intAlphabet); i++) { for (int i = 0; i < sizeOfArray(m_intAlphabet); i++) {
if (m_intAlphabet[i] && LegoGameState::g_intCharacters[i].buttonId == buttonId) { if (m_intAlphabet[i] && LegoGameState::g_intCharacters[i].m_buttonId == buttonId) {
intChar = &LegoGameState::g_intCharacters[i]; intChar = &LegoGameState::g_intCharacters[i];
break; break;
} }