From 4d2368d9cb031a30dd0bf174b5b17ee25d010438 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Sat, 6 Apr 2024 06:23:03 -0400 Subject: [PATCH] style --- LEGO1/lego/legoomni/include/actions/jukebox_actions.h | 2 +- LEGO1/lego/legoomni/include/gasstation.h | 2 +- LEGO1/lego/legoomni/src/gasstation/gasstationstate.cpp | 2 +- LEGO1/lego/legoomni/src/worlds/gasstation.cpp | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/LEGO1/lego/legoomni/include/actions/jukebox_actions.h b/LEGO1/lego/legoomni/include/actions/jukebox_actions.h index a07b7028..56149d88 100644 --- a/LEGO1/lego/legoomni/include/actions/jukebox_actions.h +++ b/LEGO1/lego/legoomni/include/actions/jukebox_actions.h @@ -68,7 +68,7 @@ enum Script { c_RaceCarBuild_Movie = 53, c_RaceCarBuild_Music = 54, c_JBMusic1 = 55, - c_JBMusic2 = 56, // Loaded on GasStation::ReadyWorld + c_JBMusic2 = 56, c_JBMusic3 = 57, c_JBMusic4 = 58, c_JBMusic5 = 59, diff --git a/LEGO1/lego/legoomni/include/gasstation.h b/LEGO1/lego/legoomni/include/gasstation.h index 8e855f46..644e4ea5 100644 --- a/LEGO1/lego/legoomni/include/gasstation.h +++ b/LEGO1/lego/legoomni/include/gasstation.h @@ -44,7 +44,7 @@ class GasStation : public LegoWorld { // GasStation::`scalar deleting destructor' private: - void FUN_10005590(undefined4); + void FUN_10005590(MxU32 p_objectId); MxLong HandleEndAction(MxEndActionNotificationParam& p_param); MxLong HandleKeyPress(MxS8 p_key); MxLong HandleButtonDown(LegoControlManagerEvent& p_param); diff --git a/LEGO1/lego/legoomni/src/gasstation/gasstationstate.cpp b/LEGO1/lego/legoomni/src/gasstation/gasstationstate.cpp index 45b64962..cd40db3d 100644 --- a/LEGO1/lego/legoomni/src/gasstation/gasstationstate.cpp +++ b/LEGO1/lego/legoomni/src/gasstation/gasstationstate.cpp @@ -25,7 +25,7 @@ MxResult GasStationState::VTable0x1c(LegoFile* p_legoFile) } // STUB: LEGO1 0x10006430 -void GasStationState::FUN_10006430(undefined4 p_param) +void GasStationState::FUN_10006430(undefined4) { // TODO } diff --git a/LEGO1/lego/legoomni/src/worlds/gasstation.cpp b/LEGO1/lego/legoomni/src/worlds/gasstation.cpp index da006359..2757e3eb 100644 --- a/LEGO1/lego/legoomni/src/worlds/gasstation.cpp +++ b/LEGO1/lego/legoomni/src/worlds/gasstation.cpp @@ -257,9 +257,9 @@ void GasStation::ReadyWorld() } // FUNCTION: LEGO1 0x10005590 -void GasStation::FUN_10005590(undefined4 p_param) +void GasStation::FUN_10005590(MxU32 p_objectId) { - PlayAction(p_param); + PlayAction(p_objectId); } inline void GasStation::PlayAction(MxU32 p_objectId)