diff options
author | Travis Howell | 2004-08-25 07:10:12 +0000 |
---|---|---|
committer | Travis Howell | 2004-08-25 07:10:12 +0000 |
commit | f249e3e508abd019f6345564016ae1fbf3a85c25 (patch) | |
tree | beb625d276657204ac9e262e6de10da79c45610e | |
parent | 5b7f8b5e7894efe6fcc733f4de7685d05fad56a9 (diff) | |
download | scummvm-rg350-f249e3e508abd019f6345564016ae1fbf3a85c25.tar.gz scummvm-rg350-f249e3e508abd019f6345564016ae1fbf3a85c25.tar.bz2 scummvm-rg350-f249e3e508abd019f6345564016ae1fbf3a85c25.zip |
No mainmenu variable in HE 7.2
svn-id: r14743
-rw-r--r-- | scumm/scumm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp index 5e0dc4fe32..5bc49fb43e 100644 --- a/scumm/scumm.cpp +++ b/scumm/scumm.cpp @@ -2085,7 +2085,7 @@ void ScummEngine::processKbd(bool smushMode) { if ((_version <= 2) || (_features & GF_FMTOWNS && _version == 3)) saveloadkey = 5; // F5 - else if ((_version <= 3) || (_gameId == GID_SAMNMAX) || (_gameId == GID_CMI)) + else if ((_version <= 3) || (_gameId == GID_SAMNMAX) || (_gameId == GID_CMI) || (_heversion >= 72)) saveloadkey = 319; // F5 else saveloadkey = VAR(VAR_MAINMENU_KEY); |