SCUMM: DOTT: Fix quit prompt appearing when using the PC in Ed's room Pt.2

This fixes the same bug, this time when not using the original GUI
This commit is contained in:
AndywinXp 2023-01-28 10:25:44 +01:00
parent c44c2c54a1
commit 9e6e8f733a

View file

@ -242,7 +242,7 @@ bool ScummEngine::hasFeature(EngineFeature f) const {
f == kSupportsChangingOptionsDuringRuntime &&
Common::String(_game.guioptions).contains(GUIO_AUDIO_OVERRIDE)
) ||
(f == kSupportsQuitDialogOverride && _useOriginalGUI);
(f == kSupportsQuitDialogOverride && (_useOriginalGUI || !ChainedGamesMan.empty()));
}