From f4b62324964897f50f002062f2e9d1df8f98bb9b Mon Sep 17 00:00:00 2001 From: headshot2017 Date: Thu, 26 Jan 2023 20:06:01 -0400 Subject: [PATCH] fix mario slow climb sound --- src/decomp/game/mario_actions_automatic.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/decomp/game/mario_actions_automatic.c b/src/decomp/game/mario_actions_automatic.c index b7707e2..afbe2b7 100644 --- a/src/decomp/game/mario_actions_automatic.c +++ b/src/decomp/game/mario_actions_automatic.c @@ -612,6 +612,8 @@ s32 act_ledge_climb_slow(struct MarioState *m) { return let_go_of_ledge(m); } + m->actionTimer++; + if (m->actionTimer >= 28 && (m->input & (INPUT_NONZERO_ANALOG | INPUT_A_PRESSED | INPUT_OFF_FLOOR | INPUT_ABOVE_SLIDE))) {