From fdce2ea425962e38605a2cd652f0640b89f6df91 Mon Sep 17 00:00:00 2001 From: Joost Peters Date: Wed, 4 Feb 2009 20:55:15 +0000 Subject: Fix palette on big endian svn-id: r36219 --- engines/tinsel/faders.cpp | 2 +- engines/tinsel/polygons.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'engines/tinsel') diff --git a/engines/tinsel/faders.cpp b/engines/tinsel/faders.cpp index 0233dbcf4a..3039e57bb2 100644 --- a/engines/tinsel/faders.cpp +++ b/engines/tinsel/faders.cpp @@ -117,7 +117,7 @@ static void FadeProcess(CORO_PARAM, const void *param) { // fade palette using next multiplier if (TinselV2) FadePalette(_ctx->fadeRGB, pFade->pPalQ->palRGB, - FROM_LE_32(pFade->pPalQ->numColours), (uint32) *_ctx->pColMult); + pFade->pPalQ->numColours, (uint32) *_ctx->pColMult); else FadePalette(_ctx->fadeRGB, _ctx->pPalette->palRGB, FROM_LE_32(_ctx->pPalette->numColours), (uint32) *_ctx->pColMult); diff --git a/engines/tinsel/polygons.cpp b/engines/tinsel/polygons.cpp index 6f904e9372..69031d7a9b 100644 --- a/engines/tinsel/polygons.cpp +++ b/engines/tinsel/polygons.cpp @@ -1041,8 +1041,8 @@ int GetBrightness(HPOLYGON hPath, int y) { Poly pp(LockMem(pHandle), Polys[hPath]->pIndex); // Path is of a constant brightness? - if (pp.bright1 == pp.bright2) - return pp.bright1; + if (FROM_LE_32(pp.bright1) == FROM_LE_32(pp.bright2)) + return FROM_LE_32(pp.bright1); assert(FROM_LE_32(pp.bright1) >= FROM_LE_32(pp.bright2)); -- cgit v1.2.3