mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-02-03 12:31:15 +00:00
Fixes
This commit is contained in:
parent
40517a53a8
commit
40f44881b3
@ -24,9 +24,9 @@ struct ColorStringStruct {
|
||||
};
|
||||
|
||||
struct InternationalCharacter {
|
||||
unsigned char m_character;
|
||||
char32_t m_character;
|
||||
const char* m_bitmap;
|
||||
MxU32 buttonId;
|
||||
MxU32 m_buttonId;
|
||||
};
|
||||
|
||||
// VTABLE: LEGO1 0x100d74a8
|
||||
|
||||
@ -244,7 +244,7 @@ MxLong RegistrationBook::HandleControl(LegoControlManagerNotificationParam& p_pa
|
||||
const InternationalCharacter* intChar = NULL;
|
||||
|
||||
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];
|
||||
break;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user