diff options
author | Travis Howell | 2004-07-20 11:50:44 +0000 |
---|---|---|
committer | Travis Howell | 2004-07-20 11:50:44 +0000 |
commit | 08a260444f56c54ae8b20e0542a398c78fbdeddb (patch) | |
tree | cdcb3b173ea9899e30f55859f43383501175a347 | |
parent | 6225285a59f11df5acbe3ac1e64f1592a8a441e1 (diff) | |
download | scummvm-rg350-08a260444f56c54ae8b20e0542a398c78fbdeddb.tar.gz scummvm-rg350-08a260444f56c54ae8b20e0542a398c78fbdeddb.tar.bz2 scummvm-rg350-08a260444f56c54ae8b20e0542a398c78fbdeddb.zip |
Use for HE 7.0 games too.
svn-id: r14286
-rw-r--r-- | scumm/dialogs.cpp | 1 | ||||
-rw-r--r-- | scumm/scumm.cpp | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/scumm/dialogs.cpp b/scumm/dialogs.cpp index edf71a0c62..c401ccec13 100644 --- a/scumm/dialogs.cpp +++ b/scumm/dialogs.cpp @@ -126,6 +126,7 @@ static ResString string_map_table_v6[] = { {100, "Quit"}, {101, "OK"}, {93, "Game paused"}, + {210, "Game version"} }; static ResString string_map_table_v5[] = { diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp index 525896872d..ea15b3b031 100644 --- a/scumm/scumm.cpp +++ b/scumm/scumm.cpp @@ -2013,7 +2013,7 @@ void ScummEngine::processKbd(bool smushMode) { // COMI version string is hard coded // FT version strings are partly hard coded too - if (_gameId == GID_DIG && _lastKeyHit == VAR(VAR_VERSION)) { + if ((_gameId == GID_DIG || _heversion >= 70) && _lastKeyHit == VAR(VAR_VERSION)) { versionDialog(); return; } |