Skip to content

Commit

Permalink
FIX: Always unloading while transitioning (prevents hardware integrat…
Browse files Browse the repository at this point in the history
…ions getting stuck)
  • Loading branch information
afska committed Apr 6, 2021
1 parent 21fd063 commit f8d422b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/scenes/SongScene.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,10 @@ void SongScene::load() {
}

void SongScene::tick(u16 keys) {
if (engine->isTransitioning())
if (engine->isTransitioning()) {
unload();
return;
}

if (SEQUENCE_isMultiplayerSessionDead()) {
unload();
Expand Down

0 comments on commit f8d422b

Please sign in to comment.