Fix RTL from Kyra3 main menu. (It now doesn't quit ScummVM anymore)

svn-id: r42180
This commit is contained in:
Johannes Schickel 2009-07-06 16:17:03 +00:00
parent 30d1462da0
commit c22010b3d2

View File

@ -310,16 +310,19 @@ Common::Error KyraEngine_MR::go() {
break;
case 3:
default:
fadeOutMusic(60);
_screen->fadeToBlack(60);
uninitMainMenu();
quitGame();
running = false;
break;
default:
break;
}
}
if (_showOutro)
if (_showOutro && !shouldQuit())
playVQA("CREDITS");
return Common::kNoError;