aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicola Mettifogo2009-02-21 05:19:35 +0000
committerNicola Mettifogo2009-02-21 05:19:35 +0000
commit3874465bdbb6d4449f0bb803e8d8db955757c872 (patch)
treef3d22e8bbf8878e21b5f6230fd5ab5ce0eaa6561
parente088f680a689a2bd5fc51e1986af51a51bf14548 (diff)
downloadscummvm-rg350-3874465bdbb6d4449f0bb803e8d8db955757c872.tar.gz
scummvm-rg350-3874465bdbb6d4449f0bb803e8d8db955757c872.tar.bz2
scummvm-rg350-3874465bdbb6d4449f0bb803e8d8db955757c872.zip
Fix for bug #1864270. Music now goes on after the the credits have been displayed in the Amiga demo version of Nippon Safes.
svn-id: r38664
-rw-r--r--engines/parallaction/gui_ns.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/gui_ns.cpp b/engines/parallaction/gui_ns.cpp
index a4df53ad90..57fd4b6c39 100644
--- a/engines/parallaction/gui_ns.cpp
+++ b/engines/parallaction/gui_ns.cpp
@@ -708,10 +708,10 @@ public:
}
virtual void enter() {
- _vm->_soundMan->stopMusic();
_vm->_input->setMouseState(MOUSE_DISABLED);
if (!_isDemo) {
+ _vm->_soundMan->stopMusic();
int label = _vm->_gfx->createLabel(_vm->_menuFont, "CLICK MOUSE BUTTON TO START", 1);
_vm->_gfx->showLabel(label, CENTER_LABEL_HORIZONTAL, 80);
}