summaryrefslogtreecommitdiff
path: root/src/code/game.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/code/game.c')
-rw-r--r--src/code/game.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/game.c b/src/code/game.c
index 053c836ff..4d49db966 100644
--- a/src/code/game.c
+++ b/src/code/game.c
@@ -227,10 +227,10 @@ void func_800C49F4(GraphicsContext* gfxCtx) {
CLOSE_DISPS(gfxCtx, "../game.c", 865);
}
-void PadMgr_RequestPadData(PadMgr*, Input*, s32);
+void PadMgr_RequestPadData(PadMgr* padMgr, Input* inputs, s32 gameRequest);
void GameState_ReqPadData(GameState* gameState) {
- PadMgr_RequestPadData(&gPadMgr, &gameState->input[0], 1);
+ PadMgr_RequestPadData(&gPadMgr, gameState->input, true);
}
void GameState_Update(GameState* gameState) {