From beb0c9e2971752ece466cb4ebc84d4f8b95507ad Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Sat, 11 Mar 2006 09:43:00 +0000 Subject: Fix endian issue in getArrayDim() svn-id: r21216 --- engines/scumm/he/script_v90he.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engines/scumm/he/script_v90he.cpp') 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); } } -- cgit v1.2.3