aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/charset.h
diff options
context:
space:
mode:
authorTravis Howell2009-10-26 13:22:05 +0000
committerTravis Howell2009-10-26 13:22:05 +0000
commitdec5406e416418952a898b57439e707523341a26 (patch)
treeb519cd8868b6e783b4a910fae52eb0c33057d449 /engines/scumm/charset.h
parentbd781fad910636044d5b959d4b8afd941abedb39 (diff)
downloadscummvm-rg350-dec5406e416418952a898b57439e707523341a26.tar.gz
scummvm-rg350-dec5406e416418952a898b57439e707523341a26.tar.bz2
scummvm-rg350-dec5406e416418952a898b57439e707523341a26.zip
Fix charset display in PCE version of Loom.
svn-id: r45406
Diffstat (limited to 'engines/scumm/charset.h')
-rw-r--r--engines/scumm/charset.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/charset.h b/engines/scumm/charset.h
index 3859903281..8c48ef29f5 100644
--- a/engines/scumm/charset.h
+++ b/engines/scumm/charset.h
@@ -108,7 +108,7 @@ protected:
ShadowMode _shadowMode;
void enableShadow(bool enable);
- void drawBits1(const Graphics::Surface &s, byte *dst, const byte *src, int drawTop, int width, int height);
+ void drawBits1(const Graphics::Surface &s, byte *dst, const byte *src, int drawTop, int width, int height, uint8 bitDepth);
public:
CharsetRendererCommon(ScummEngine *vm);
@@ -137,7 +137,7 @@ class CharsetRendererNES : public CharsetRendererCommon {
protected:
byte *_trTable;
- void drawBits1(const Graphics::Surface &s, byte *dst, const byte *src, int drawTop, int width, int height);
+ void drawBits1(const Graphics::Surface &s, byte *dst, const byte *src, int drawTop, int width, int height, uint8 bitDepth);
public:
CharsetRendererNES(ScummEngine *vm) : CharsetRendererCommon(vm) {}