Add Spanish support

This commit is contained in:
Christian Semmler 2025-06-17 15:40:14 -07:00
parent d156ac0f48
commit b8d8316c7c
2 changed files with 4 additions and 3 deletions

View File

@ -263,7 +263,7 @@ class LegoGameState {
Area m_previousArea; // 0x428 Area m_previousArea; // 0x428
Area m_unk0x42c; // 0x42c Area m_unk0x42c; // 0x42c
static const InternationalCharacter g_intCharacters[7]; static const InternationalCharacter g_intCharacters[8];
}; };
MxBool ROIColorOverride(const char* p_input, char* p_output, MxU32 p_copyLen); MxBool ROIColorOverride(const char* p_input, char* p_output, MxU32 p_copyLen);

View File

@ -143,14 +143,15 @@ const char* g_strEnable = "enable";
// STRING: LEGO1 0x100f3bf4 // STRING: LEGO1 0x100f3bf4
const char* g_strDisable = "disable"; const char* g_strDisable = "disable";
const InternationalCharacter LegoGameState::g_intCharacters[7] = { const InternationalCharacter LegoGameState::g_intCharacters[8] = {
{0xe4, "Aum_Bitmap", 29}, {0xe4, "Aum_Bitmap", 29},
{0xf6, "Oum_Bitmap", 30}, {0xf6, "Oum_Bitmap", 30},
{0xdf, "Beta_Bitmap", 31}, {0xdf, "Beta_Bitmap", 31},
{0xfc, "Uum_Bitmap", 32}, {0xfc, "Uum_Bitmap", 32},
{0xe5, "Ao_Bitmap", 29}, {0xe5, "Ao_Bitmap", 29},
{0xe6, "Ae_Bitmap", 30}, {0xe6, "Ae_Bitmap", 30},
{0xf8, "Oz_Bitmap", 31} {0xf8, "Oz_Bitmap", 31},
{0xf1, "Ene_Bitmap", 29}
}; };
// FUNCTION: LEGO1 0x10039550 // FUNCTION: LEGO1 0x10039550