aboutsummaryrefslogtreecommitdiff
path: root/scumm/charset.h
diff options
context:
space:
mode:
authorMax Horn2004-08-08 22:10:38 +0000
committerMax Horn2004-08-08 22:10:38 +0000
commit835ef5f0127718959425dfdd7c123cf14ce13829 (patch)
tree38beec4b02a7fdf0d08fd22fdd7f2e2b9ab07cee /scumm/charset.h
parentf8cc6c22416c0e9615abfdd98fc2e86852e897a9 (diff)
downloadscummvm-rg350-835ef5f0127718959425dfdd7c123cf14ce13829.tar.gz
scummvm-rg350-835ef5f0127718959425dfdd7c123cf14ce13829.tar.bz2
scummvm-rg350-835ef5f0127718959425dfdd7c123cf14ce13829.zip
Patch #1003866 (SCUMM: New text rendering code (fixes various bugs))
svn-id: r14521
Diffstat (limited to 'scumm/charset.h')
-rw-r--r--scumm/charset.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/scumm/charset.h b/scumm/charset.h
index 7ad92fd974..116d4e3dfe 100644
--- a/scumm/charset.h
+++ b/scumm/charset.h
@@ -69,7 +69,6 @@ public:
void restoreCharsetBg();
void clearCharsetMask();
- bool hasCharsetMask(int left, int top, int right, int bottom);
virtual void printChar(int chr) = 0;
@@ -88,7 +87,7 @@ class CharsetRendererCommon : public CharsetRenderer {
protected:
byte *_fontPtr;
- void drawBits1(VirtScreen *vs, byte *dst, const byte *src, byte *mask, int drawTop, int width, int height);
+ void drawBits1(VirtScreen *vs, byte *dst, const byte *src, int drawTop, int width, int height);
public:
CharsetRendererCommon(ScummEngine *vm) : CharsetRenderer(vm) {}
@@ -102,7 +101,7 @@ class CharsetRendererClassic : public CharsetRendererCommon {
protected:
int getCharWidth(byte chr);
- void drawBitsN(VirtScreen *vs, byte *dst, const byte *src, byte *mask, byte bpp, int drawTop, int width, int height);
+ void drawBitsN(VirtScreen *vs, byte *dst, const byte *src, byte bpp, int drawTop, int width, int height);
public:
CharsetRendererClassic(ScummEngine *vm) : CharsetRendererCommon(vm) {}