Skip to content

Commit

Permalink
Replaced a stray 'A' with SDLK_A
Browse files Browse the repository at this point in the history
  • Loading branch information
madebr committed Dec 29, 2024
1 parent cbc7a93 commit 2138d40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LEGO1/lego/legoomni/src/worlds/registrationbook.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ MxLong RegistrationBook::HandleKeyPress(SDL_Keycode p_key)
}
}
else if (key != SDLK_BACKSPACE && m_unk0x280.m_cursorPos < 7) {
m_name[0][m_unk0x280.m_cursorPos] = m_alphabet[key - 'A']->Clone();
m_name[0][m_unk0x280.m_cursorPos] = m_alphabet[key - SDLK_A]->Clone();

if (m_name[0][m_unk0x280.m_cursorPos] != NULL) {
m_alphabet[key - SDLK_A]->GetAction()->SetUnknown24(
Expand Down

0 comments on commit 2138d40

Please sign in to comment.