diff options
author | Travis Howell | 2009-05-02 05:18:09 +0000 |
---|---|---|
committer | Travis Howell | 2009-05-02 05:18:09 +0000 |
commit | ad4cb49e3b1eb8966e7a400ead1f08ac379bf137 (patch) | |
tree | 397e22817cf32f3c8b43781a3b71bec99fc1f054 | |
parent | 52ccf2af949f217351da13e96fcb3314492fe4fc (diff) | |
download | scummvm-rg350-ad4cb49e3b1eb8966e7a400ead1f08ac379bf137.tar.gz scummvm-rg350-ad4cb49e3b1eb8966e7a400ead1f08ac379bf137.tar.bz2 scummvm-rg350-ad4cb49e3b1eb8966e7a400ead1f08ac379bf137.zip |
Fix the ending of CD demo.
svn-id: r40233
-rw-r--r-- | engines/sky/logic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sky/logic.cpp b/engines/sky/logic.cpp index 20b82feafd..ccfbfbbd62 100644 --- a/engines/sky/logic.cpp +++ b/engines/sky/logic.cpp @@ -2309,7 +2309,7 @@ bool Logic::fnEyeball(uint32 id, uint32 b, uint32 c) { bool Logic::fnLeaveSection(uint32 sectionNo, uint32 b, uint32 c) { if (SkyEngine::isDemo()) - _skyControl->showGameQuitMsg(); + Engine::quitGame(); if (sectionNo == 5) //linc section - has different mouse icons _skyMouse->replaceMouseCursors(60301); |