From 97c166dcaf5473c74109cf77796858fa12aceb72 Mon Sep 17 00:00:00 2001 From: gamemasterplc Date: Sun, 7 Jan 2024 17:17:44 -0600 Subject: [PATCH] Fix build --- include/game/board/basic_space.h | 4 ++-- include/game/board/player.h | 2 +- include/game/board/warp.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/game/board/basic_space.h b/include/game/board/basic_space.h index 38924130..d786b2b7 100644 --- a/include/game/board/basic_space.h +++ b/include/game/board/basic_space.h @@ -3,8 +3,8 @@ #include "dolphin.h" -void BoardEventLandBlue(s32, s16); -void BoardEventLandRed(s32, s16); +void BoardEventLandBlue(s32, s32); +void BoardEventLandRed(s32, s32); s8 BoardCoinChgCreate(Vec*, s8); s32 BoardCoinChgExist(s32); void BoardCoinChgHide(s32); diff --git a/include/game/board/player.h b/include/game/board/player.h index 53f3893d..c9c9bcd2 100644 --- a/include/game/board/player.h +++ b/include/game/board/player.h @@ -43,7 +43,7 @@ void BoardPlayerPosGet(s32, Vec*); void BoardPlayerCoinsSet(s32 player, s32 value); s32 BoardPlayerSizeGet(s32 player); void BoardPlayerAutoSizeSet(s32 player, s32 value); -void BoardPlayerMotionStart(s32, s32, s32); +void BoardPlayerMotionStart(s16, s32, s32); void BoardPlayerMotionShiftSet(s32 player, s32 arg1, float start, float end, u32 attr); void BoardPlayerRotYSet(s32 player, float rot_y); diff --git a/include/game/board/warp.h b/include/game/board/warp.h index 8b118caf..71175832 100644 --- a/include/game/board/warp.h +++ b/include/game/board/warp.h @@ -4,6 +4,6 @@ #include "game/process.h" #include "game/wipe.h" -void BoardWarpExec(s32 player, s16 space); +void BoardWarpExec(s32 player, s32 space); #endif \ No newline at end of file