Change type

This commit is contained in:
Christian Semmler 2024-02-11 17:09:26 -05:00
parent 7d72575079
commit 22ff9e06df
2 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ class RegistrationBook : public LegoWorld {
undefined4 m_unk0x2cc; // 0x2cc
MxLong HandleEndAction(MxEndActionNotificationParam& p_param);
MxLong HandleKeyPress(char p_key);
MxLong HandleKeyPress(MxS8 p_key);
MxLong HandleClick(LegoControlManagerEvent& p_param);
MxLong HandleNotification19(MxParam& p_param);
};

View File

@ -98,7 +98,7 @@ MxLong RegistrationBook::HandleEndAction(MxEndActionNotificationParam& p_param)
}
// STUB: LEGO1 0x100772d0
MxLong RegistrationBook::HandleKeyPress(char p_key)
MxLong RegistrationBook::HandleKeyPress(MxS8 p_key)
{
return 0;
}