From e4edfb5be4bb1582b10011d1c5d52fd007540291 Mon Sep 17 00:00:00 2001 From: jaburns Date: Tue, 27 Oct 2020 11:27:37 -0600 Subject: [PATCH] Fix bodystate action not updated --- src/decomp/game/mario.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/decomp/game/mario.c b/src/decomp/game/mario.c index 4408004..8dd197c 100644 --- a/src/decomp/game/mario.c +++ b/src/decomp/game/mario.c @@ -1515,10 +1515,10 @@ void update_mario_health(struct MarioState *m) { } /** - * Updates some basic info for camera usage. + * Updates some basic info for camera usage. Also update body state action. */ void update_mario_info_for_cam(struct MarioState *m) { -// m->marioBodyState->action = m->action; + m->marioBodyState->action = m->action; // m->statusForCamera->action = m->action; // vec3s_copy(m->statusForCamera->faceAngle, m->faceAngle);