aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2005-09-19 00:35:12 +0000
committerTravis Howell2005-09-19 00:35:12 +0000
commit0d3e20e4781b38e98ab05e5ee20c0b9425f01509 (patch)
tree89e310a3b92a1ba068b05203049bd05f992c7923
parent3b029a37b221eef05582297259384b52d2324c72 (diff)
downloadscummvm-rg350-0d3e20e4781b38e98ab05e5ee20c0b9425f01509.tar.gz
scummvm-rg350-0d3e20e4781b38e98ab05e5ee20c0b9425f01509.tar.bz2
scummvm-rg350-0d3e20e4781b38e98ab05e5ee20c0b9425f01509.zip
Ooops
svn-id: r18846
-rw-r--r--scumm/gfx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp
index 15cedae852..57936db14d 100644
--- a/scumm/gfx.cpp
+++ b/scumm/gfx.cpp
@@ -2444,7 +2444,7 @@ void Gdi::drawStripEGA(byte *dst, int dstPitch, const byte *src, int height) con
}
for (z = 0; z < run; z++) {
- *(dst + y * dstPitch + x) = *(dst + y * dstPitch + x - 1) + _paletteMod;
+ *(dst + y * dstPitch + x) = *(dst + y * dstPitch + x - 1);
y++;
if (y >= height) {