File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1965,7 +1965,7 @@ s32 check_common_moving_cancels(struct MarioState *m) {
19651965}
19661966
19671967s32 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 ;
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments