From 905d6b600865e882c399e8630bdd6a99c1824d15 Mon Sep 17 00:00:00 2001 From: Paweł Kołodziejski Date: Fri, 10 Jan 2003 23:29:47 +0000 Subject: endian fix svn-id: r6395 --- scumm/smush/codec47.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scumm/smush/codec47.cpp b/scumm/smush/codec47.cpp index 97496e7a2d..23223b58e0 100644 --- a/scumm/smush/codec47.cpp +++ b/scumm/smush/codec47.cpp @@ -521,12 +521,12 @@ void Codec47Decoder::makeTables47(int32 width) { int16 * tmp_ptr = smush_table; int16 * ptr_table = &codec47_table[1]; do { - int16 tmp_word = *(ptr_table); + int16 tmp_word = READ_LE_UINT16(ptr_table); ptr_table += 2; tmp_word *= (int16)width; - tmp_word += *(ptr_table - 3); + tmp_word += READ_LE_UINT16(ptr_table - 3); tmp_ptr++; - *(tmp_ptr - 1) = tmp_word; + *(tmp_ptr - 1) = TO_LE_16(tmp_word); } while (tmp_ptr < &smush_table[255]); a = 0; c = 0; -- cgit v1.2.3