Address more review comments

This commit is contained in:
jonschz 2024-07-17 15:45:33 +02:00
parent 1a210d0647
commit 8ab78ee232
2 changed files with 6 additions and 6 deletions

View File

@ -16,10 +16,10 @@ struct EdgeReference {
// SIZE 0x10 // SIZE 0x10
struct SkeletonKickPhase { struct SkeletonKickPhase {
EdgeReference* m_edgeRef; // 0x00 EdgeReference* m_edgeRef; // 0x00
float m_lower; // 0x04 float m_lower; // 0x04
float m_upper; // 0x08 float m_upper; // 0x08
unsigned char m_userState; // 0x0c MxU8 m_userState; // 0x0c
}; };
// VTABLE: LEGO1 0x100d58a0 LegoRaceActor // VTABLE: LEGO1 0x100d58a0 LegoRaceActor
@ -71,7 +71,7 @@ class LegoRaceCar : public LegoCarRaceActor, public LegoRaceMap {
virtual void SetMaxLinearVelocity(float p_maxLinearVelocity); virtual void SetMaxLinearVelocity(float p_maxLinearVelocity);
virtual void FUN_10012ff0(float p_param); virtual void FUN_10012ff0(float p_param);
virtual MxS32 HandleSkeletonKicks(float p_param1); virtual MxU32 HandleSkeletonKicks(float p_param1);
// SYNTHETIC: LEGO1 0x10014240 // SYNTHETIC: LEGO1 0x10014240
// LegoRaceCar::`scalar deleting destructor' // LegoRaceCar::`scalar deleting destructor'

View File

@ -212,7 +212,7 @@ void LegoRaceCar::FUN_10012ff0(float p_param)
// FUNCTION: LEGO1 0x10013130 // FUNCTION: LEGO1 0x10013130
// FUNCTION: BETA10 0x100cce50 // FUNCTION: BETA10 0x100cce50
MxS32 LegoRaceCar::HandleSkeletonKicks(float p_param1) MxU32 LegoRaceCar::HandleSkeletonKicks(float p_param1)
{ {
const SkeletonKickPhase* current = g_skeletonKickPhases; const SkeletonKickPhase* current = g_skeletonKickPhases;