From 118ceaa099ddf0b41ec144ab2b0f511e0d009c03 Mon Sep 17 00:00:00 2001 From: krzys-h Date: Tue, 18 Aug 2015 19:33:01 +0200 Subject: [PATCH] Fixed music stopping during apperance phase, closes #573 --- src/level/robotmain.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/level/robotmain.cpp b/src/level/robotmain.cpp index 28fb183a..4e6fb9ee 100644 --- a/src/level/robotmain.cpp +++ b/src/level/robotmain.cpp @@ -369,6 +369,7 @@ bool IsPhaseWithWorld(Phase phase) bool IsMainMenuPhase(Phase phase) { + if (phase == PHASE_APPERANCE) return true; return !IsPhaseWithWorld(phase); }