aboutsummaryrefslogtreecommitdiff
path: root/engines/dreamweb/print.cpp
diff options
context:
space:
mode:
authorBertrand Augereau2011-07-29 00:00:45 +0200
committerBertrand Augereau2011-07-29 00:00:45 +0200
commit27482d2de2d2112526e70123febd1527902913be (patch)
treeebb7db552c38e8dc25215d628e9d4c6aaf51ddab /engines/dreamweb/print.cpp
parentfe73a2407820000d0321173a50e0d98dbcfc213f (diff)
downloadscummvm-rg350-27482d2de2d2112526e70123febd1527902913be.tar.gz
scummvm-rg350-27482d2de2d2112526e70123febd1527902913be.tar.bz2
scummvm-rg350-27482d2de2d2112526e70123febd1527902913be.zip
DREAMWEB: Fixed showframe ABI to conform to wjp's patch c626394f2b6566bc310f7fb02b9449acc2e8f00f
Diffstat (limited to 'engines/dreamweb/print.cpp')
-rw-r--r--engines/dreamweb/print.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dreamweb/print.cpp b/engines/dreamweb/print.cpp
index a73e9f0792..46d7d45b1a 100644
--- a/engines/dreamweb/print.cpp
+++ b/engines/dreamweb/print.cpp
@@ -90,7 +90,7 @@ void DreamGenContext::printchar(uint16 src, uint16* x, uint16 y, uint8 c, uint8
if (data.byte(kForeignrelease) != 0)
y -= 3;
uint16 tmp = c - 32 + data.word(kCharshift);
- showframe(src, *x, y, tmp & 0xff, tmp >> 8, width, height);
+ showframe(src, *x, y, tmp & 0x1ff, (tmp >> 8) & 0xfe, width, height);
di = pop();
si = pop();
_cmp(data.byte(kKerning), 0);