aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/he/script_v90he.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/scumm/he/script_v90he.cpp')
-rw-r--r--engines/scumm/he/script_v90he.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/scumm/he/script_v90he.cpp b/engines/scumm/he/script_v90he.cpp
index a5d45422dd..3759cf7b88 100644
--- a/engines/scumm/he/script_v90he.cpp
+++ b/engines/scumm/he/script_v90he.cpp
@@ -2215,16 +2215,16 @@ void ScummEngine_v90he::getArrayDim(int array, int *dim2start, int *dim2end, int
ArrayHeader *ah = (ArrayHeader *)getResourceAddress(rtString, readVar(array));
assert(ah);
if (dim2start && *dim2start == -1) {
- *dim2start = ah->dim2start;
+ *dim2start = FROM_LE_32(ah->dim2start);
}
if (dim2end && *dim2end == -1) {
- *dim2end = ah->dim2end;
+ *dim2end = FROM_LE_32(ah->dim2end);
}
if (dim1start && *dim1start == -1) {
- *dim1start = ah->dim1start;
+ *dim1start = FROM_LE_32(ah->dim1start);
}
if (dim1end && *dim1end == -1) {
- *dim1end = ah->dim1end;
+ *dim1end = FROM_LE_32(ah->dim1end);
}
}