aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2003-10-09 05:44:46 +0000
committerTravis Howell2003-10-09 05:44:46 +0000
commit94be874b704ae7d761353a92aff37afdfee05166 (patch)
treeaf1f754db328bd2ffd94322fc5f6a958a66ca183 /scumm
parente3a72b51499508ad7eb9b9c4bad9c63cf90138ba (diff)
downloadscummvm-rg350-94be874b704ae7d761353a92aff37afdfee05166.tar.gz
scummvm-rg350-94be874b704ae7d761353a92aff37afdfee05166.tar.bz2
scummvm-rg350-94be874b704ae7d761353a92aff37afdfee05166.zip
I had this wrong way around.
svn-id: r10691
Diffstat (limited to 'scumm')
-rw-r--r--scumm/gfx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp
index dbd59c8ab7..dd9605f5b5 100644
--- a/scumm/gfx.cpp
+++ b/scumm/gfx.cpp
@@ -2113,7 +2113,7 @@ void Gdi::unkDecode10(byte *dst, const byte *src, int height) {
for (;;) {
byte color = *src++;
if (color < numcolors) {
- *dst = local_palette[_vm->_roomPalette[color]];
+ *dst = _vm->_roomPalette[local_palette[color]];
NEXT_ROW;
} else {
uint run = color - numcolors + 1;