summaryrefslogtreecommitdiff
path: root/arm9/src/game_init.c
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2021-05-31 12:14:52 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2021-05-31 12:14:52 -0400
commitd612c41066844fc82edaaea6bc946adbcc71a3d9 (patch)
treef2888ecbde6de01f1190d90a92f6cc7aa47ff049 /arm9/src/game_init.c
parent0b4d803fd24881aafc9626c843ae8bb49b9c6535 (diff)
Better docs of gx, error_message_reset, etc
Diffstat (limited to 'arm9/src/game_init.c')
-rw-r--r--arm9/src/game_init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arm9/src/game_init.c b/arm9/src/game_init.c
index 840b17a4..1c6098ea 100644
--- a/arm9/src/game_init.c
+++ b/arm9/src/game_init.c
@@ -536,10 +536,10 @@ void ApplyButtonModeToInput(void)
}
}
-void SetKeyRepeatTimers(int x, int y)
+void SetKeyRepeatTimers(int continueDelay, int startDelay)
{
- gMain.keyRepeatContinueDelay = x;
- gMain.keyRepeatStartDelay = y;
+ gMain.keyRepeatContinueDelay = continueDelay;
+ gMain.keyRepeatStartDelay = startDelay;
}
void SetSoftResetDisableMask(u8 a0)