Skip to content

Commit 978fbda

Browse files
author
someone2639
committed
actual last one
1 parent 2b7c13a commit 978fbda

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/game/mario_actions_moving.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1965,7 +1965,7 @@ s32 check_common_moving_cancels(struct MarioState *m) {
19651965
}
19661966

19671967
s32 mario_execute_moving_action(struct MarioState *m) {
1968-
s32 cancel = FALSE;
1968+
s32 cancel = ACTION_FINISH;
19691969

19701970
if (check_common_moving_cancels(m)) {
19711971
return ACTION_CONTINUE;

src/game/mario_actions_stationary.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1129,7 +1129,7 @@ s32 mario_execute_stationary_action(struct MarioState *m) {
11291129
case ACT_BRAKING_STOP: cancel = act_braking_stop(m); break;
11301130
case ACT_BUTT_SLIDE_STOP: cancel = act_butt_slide_stop(m); break;
11311131
case ACT_HOLD_BUTT_SLIDE_STOP: cancel = act_hold_butt_slide_stop(m); break;
1132-
default: cancel = TRUE; break;
1132+
default: cancel = ACTION_CONTINUE; break;
11331133
}
11341134
/* clang-format on */
11351135

0 commit comments

Comments
 (0)