diff options
Diffstat (limited to 'engines/scumm/he')
-rw-r--r-- | engines/scumm/he/script_v72he.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/he/script_v72he.cpp b/engines/scumm/he/script_v72he.cpp index b63feeb580..96ffa2af3b 100644 --- a/engines/scumm/he/script_v72he.cpp +++ b/engines/scumm/he/script_v72he.cpp @@ -621,7 +621,7 @@ void ScummEngine_v72he::o72_getArrayDimSize() { } void ScummEngine_v72he::o72_getNumFreeArrays() { - byte **addr = _res->_types[rtString].address; + byte **addr = _res->_types[rtString]._address; int i, num = 0; for (i = 1; i < _numArray; i++) { @@ -629,7 +629,7 @@ void ScummEngine_v72he::o72_getNumFreeArrays() { num++; } - push (num); + push(num); } void ScummEngine_v72he::o72_roomOps() { |