From 021fd1f6219baf3e1f81956fc069a9ebc5746845 Mon Sep 17 00:00:00 2001 From: Agent X <44549182+Agent-11@users.noreply.github.com> Date: Sat, 9 Mar 2024 21:25:01 -0500 Subject: [PATCH] FINALLY fix broken transitions --- src/game/area.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/game/area.c b/src/game/area.c index 88b783ed9..5560652d8 100644 --- a/src/game/area.c +++ b/src/game/area.c @@ -367,6 +367,7 @@ void area_update_objects(void) { * transition type, time in frames, and the RGB color that will fill the screen. */ void play_transition(s16 transType, s16 time, u8 red, u8 green, u8 blue) { + reset_screen_transition_timers(); bool returnValue = true; smlua_call_event_hooks_int_params_ret_bool(HOOK_ON_SCREEN_TRANSITION, transType, &returnValue); if (!returnValue) { return; }