Skip to content

Commit

Permalink
Move *should = false out of condition
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanLongstaff committed Dec 9, 2024
1 parent a702531 commit 8ca4b3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion soh/soh/Enhancements/timesaver_hook_handlers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -345,9 +345,9 @@ void TimeSaverOnVanillaBehaviorHandler(GIVanillaBehavior id, bool* should, va_li
}
if ((paramsHighByte & 0x3F) != 0x3F) {
Flags_SetSwitch(gPlayState, paramsHighByte & 0x3F);
*should = false;
}
Actor_Kill(&naviTalk->actor);
*should = false;
}
break;
}
Expand Down

0 comments on commit 8ca4b3b

Please sign in to comment.