SCUMM HE: Don't show exit dialog in Moonbase.

This commit is contained in:
Little Cat 2022-04-12 19:49:39 -03:00 committed by Eugene Sandulenko
parent 3bae66919b
commit 07a795d600

View File

@ -2178,7 +2178,12 @@ void ScummEngine_v100he::o100_systemOps() {
break; break;
case 132: case 132:
// Confirm shutdown // Confirm shutdown
confirmExitDialog(); if (_game.id == GID_MOONBASE)
// Moonbase uses this subOp to quit the game (The confirmation dialog
// exists inside the game).
quitGame();
else
confirmExitDialog();
break; break;
case 133: case 133:
quitGame(); quitGame();