diff options
author | Travis Howell | 2003-10-09 05:44:46 +0000 |
---|---|---|
committer | Travis Howell | 2003-10-09 05:44:46 +0000 |
commit | 94be874b704ae7d761353a92aff37afdfee05166 (patch) | |
tree | af1f754db328bd2ffd94322fc5f6a958a66ca183 | |
parent | e3a72b51499508ad7eb9b9c4bad9c63cf90138ba (diff) | |
download | scummvm-rg350-94be874b704ae7d761353a92aff37afdfee05166.tar.gz scummvm-rg350-94be874b704ae7d761353a92aff37afdfee05166.tar.bz2 scummvm-rg350-94be874b704ae7d761353a92aff37afdfee05166.zip |
I had this wrong way around.
svn-id: r10691
-rw-r--r-- | scumm/gfx.cpp | 2 |
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; |