aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorTravis Howell2006-07-31 12:53:15 +0000
committerTravis Howell2006-07-31 12:53:15 +0000
commit155f65815e97798f134292f6f88c8b9524ba0657 (patch)
treed17b303350ade9eee611df2c2d7f4080340a4283 /engines
parenta0599ab773e8f324f90baa080c05ce05a7728406 (diff)
downloadscummvm-rg350-155f65815e97798f134292f6f88c8b9524ba0657.tar.gz
scummvm-rg350-155f65815e97798f134292f6f88c8b9524ba0657.tar.bz2
scummvm-rg350-155f65815e97798f134292f6f88c8b9524ba0657.zip
Fix bug #1528535 - ZAK FM-TOWNS: Wrong stripe in background.
svn-id: r23642
Diffstat (limited to 'engines')
-rw-r--r--engines/scumm/gfx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/gfx.cpp b/engines/scumm/gfx.cpp
index b355b29eed..14ee5db0c9 100644
--- a/engines/scumm/gfx.cpp
+++ b/engines/scumm/gfx.cpp
@@ -2859,7 +2859,7 @@ void Gdi::drawStripRaw(byte *dst, int dstPitch, const byte *src, int height, con
uint h = height;
x = 8;
for (;;) {
- *dst = *src++;
+ *dst = _roomPalette[*src++];
NEXT_ROW;
}
} else {