From f8d422b324708e1b40051ec0916935852e90e8cc Mon Sep 17 00:00:00 2001 From: Rodrigo Alfonso Date: Tue, 6 Apr 2021 07:15:05 -0300 Subject: [PATCH] FIX: Always unloading while transitioning (prevents hardware integrations getting stuck) --- src/scenes/SongScene.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/scenes/SongScene.cpp b/src/scenes/SongScene.cpp index b1d939a4..6b8b17b5 100644 --- a/src/scenes/SongScene.cpp +++ b/src/scenes/SongScene.cpp @@ -138,8 +138,10 @@ void SongScene::load() { } void SongScene::tick(u16 keys) { - if (engine->isTransitioning()) + if (engine->isTransitioning()) { + unload(); return; + } if (SEQUENCE_isMultiplayerSessionDead()) { unload();