diff options
-rw-r--r-- | scumm/scummvm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp index fa15f6ec4c..a1e07c8dcc 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -1219,7 +1219,7 @@ void Scumm::processKbd() int saveloadkey; getKeyInput(); - if (_features & GF_OLD256) /* FIXME: Support ingame screen */ + if ((_features & GF_OLD256) || (_gameId == GID_CMI)) /* FIXME: Support ingame screen */ saveloadkey = 319; else saveloadkey = _vars[VAR_SAVELOADDIALOG_KEY]; |