mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
Proper endianness handling in MatchingLevels().
Fixes #2603000 "DW2: Long pause entering Shades (big endian)" svn-id: r38316
This commit is contained in:
parent
f86403ed22
commit
7adf721492
@ -1336,11 +1336,11 @@ static bool MatchingLevels(PPOLYGON p1, PPOLYGON p2) {
|
||||
Poly pp1(pps, p1->pIndex); // This polygon 1
|
||||
Poly pp2(pps, p2->pIndex); // This polygon 2
|
||||
|
||||
assert(pp1.level1 <= pp1.level2);
|
||||
assert(pp2.level1 <= pp2.level2);
|
||||
assert((int32)FROM_LE_32(pp1.level1) <= (int32)FROM_LE_32(pp1.level2));
|
||||
assert((int32)FROM_LE_32(pp2.level1) <= (int32)FROM_LE_32(pp2.level2));
|
||||
|
||||
for (int pl = pp1.level1; pl <= pp1.level2; pl++) {
|
||||
if (pl >= pp2.level1 && pl <= pp2.level2)
|
||||
for (int pl = (int32)FROM_LE_32(pp1.level1); pl <= (int32)FROM_LE_32(pp1.level2); pl++) {
|
||||
if (pl >= (int32)FROM_LE_32(pp2.level1) && pl <= (int32)FROM_LE_32(pp2.level2))
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user