Fixed copy/paste error

This commit is contained in:
MysterD 2020-09-21 00:35:04 -07:00
parent 61b3f603b4
commit 9e11d51a8f
1 changed files with 1 additions and 1 deletions

View File

@ -35,6 +35,7 @@ void rolling_log_roll_log(void) {
f32 x = 0;
f32 y = 0;
f32 z = 0;
u8 playersTouched = 0;
for (int i = 0; i < MAX_PLAYERS; i++) {
if (!is_player_active(&gMarioStates[i])) { continue; }
@ -43,7 +44,6 @@ void rolling_log_roll_log(void) {
y += gMarioObject->header.gfx.pos[1];
z += gMarioObject->header.gfx.pos[2];
playersTouched++;
if (i == 0) { marioOnPlatform = TRUE; }
}
if (playersTouched > 0) {