diff options
author | Eugene Sandulenko | 2004-08-24 16:30:20 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2004-08-24 16:30:20 +0000 |
commit | 649e9b71a5837b10573fcfcb11497497827e35a8 (patch) | |
tree | edd9c33cd2992f6bb35ce86743a0fdfecf211358 | |
parent | 531b570394f506becb9d9aa85e3957f3da913b4c (diff) | |
download | scummvm-rg350-649e9b71a5837b10573fcfcb11497497827e35a8.tar.gz scummvm-rg350-649e9b71a5837b10573fcfcb11497497827e35a8.tar.bz2 scummvm-rg350-649e9b71a5837b10573fcfcb11497497827e35a8.zip |
HE 7.2 correction to o6_pickVarRandom
svn-id: r14733
-rw-r--r-- | scumm/script_v6.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp index 8e160f9c06..e93f3bb70e 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -3015,7 +3015,7 @@ void ScummEngine_v6::o6_pickVarRandom() { num = readArray(value, 0, 0); byte *ptr = getResourceAddress(rtString, num); - if (_version >= 7) { + if (_version >= 7 || _heversion >= 72) { var_A = READ_LE_UINT32(ptr + 4); var_C = READ_LE_UINT32(ptr + 8); } else { |