From 64043ff1fc713e0b215d1c802de6d2f1bee53efc Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sun, 19 Sep 2004 00:15:17 +0000 Subject: 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 --- scumm/script_v6.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scumm/script_v6.cpp') diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp index ebe31323f4..f20864200b 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -474,7 +474,7 @@ void ScummEngine_v6::nukeArray(int a) { } int ScummEngine_v6::findFreeArrayId() { - byte **addr = _baseArrays; + byte **addr = res.address[rtString]; int i; for (i = 1; i < _numArray; i++) { -- cgit v1.2.3