Fix HandleClick

This commit is contained in:
Christian Semmler 2024-03-13 16:26:28 -04:00
parent 068fcfbecf
commit 1679b3f5e1
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ class Hospital : public LegoWorld {
MxLong HandleKeyPress(MxS8 p_key); MxLong HandleKeyPress(MxS8 p_key);
MxLong HandleEndAction(MxEndActionNotificationParam& p_param); MxLong HandleEndAction(MxEndActionNotificationParam& p_param);
MxLong HandleButtonDown(LegoControlManagerEvent& p_param); MxLong HandleButtonDown(LegoControlManagerEvent& p_param);
MxLong HandleClick(LegoControlManagerEvent& p_param); MxBool HandleClick(LegoControlManagerEvent& p_param);
undefined2 m_unk0xf8; // 0xf8 undefined2 m_unk0xf8; // 0xf8
LegoGameState::Area m_destLocation; // 0xfc LegoGameState::Area m_destLocation; // 0xfc

View File

@ -145,7 +145,7 @@ MxLong Hospital::HandleButtonDown(LegoControlManagerEvent& p_param)
} }
// STUB: LEGO1 0x10075f90 // STUB: LEGO1 0x10075f90
MxLong Hospital::HandleClick(LegoControlManagerEvent& p_param) MxBool Hospital::HandleClick(LegoControlManagerEvent& p_param)
{ {
// TODO // TODO
return 0; return 0;