diff options
author | Eugene Sandulenko | 2004-09-19 00:15:17 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2004-09-19 00:15:17 +0000 |
commit | 64043ff1fc713e0b215d1c802de6d2f1bee53efc (patch) | |
tree | 79ecfb61976bd87d8af14be88902ecf64bd026b4 /scumm/script_v72he.cpp | |
parent | 4869c2f9c1fe850b57e520b7001e6eebd5a3bd14 (diff) | |
download | scummvm-rg350-64043ff1fc713e0b215d1c802de6d2f1bee53efc.tar.gz scummvm-rg350-64043ff1fc713e0b215d1c802de6d2f1bee53efc.tar.bz2 scummvm-rg350-64043ff1fc713e0b215d1c802de6d2f1bee53efc.zip |
Removed some not necessary #defines which could (and did) lead to program
logic misinterpretation. I assume these were added for readability, but
(a) names suggestet that they're class variables but they didn't
(b) their use wasn't consistent, i.e. there were places where variables were
used directly, not by means of the macros
(c) they didn't save that much space because they are used in few places.
svn-id: r15179
Diffstat (limited to 'scumm/script_v72he.cpp')
-rw-r--r-- | scumm/script_v72he.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp index d5a12743ea..e95ff4e24e 100644 --- a/scumm/script_v72he.cpp +++ b/scumm/script_v72he.cpp @@ -875,7 +875,7 @@ void ScummEngine_v72he::o72_getArrayDimSize() { } void ScummEngine_v72he::o72_getNumFreeArrays() { - byte **addr = _baseArrays; + byte **addr = res.address[rtString]; int i, num = 0; for (i = 1; i < _numArray; i++) { |