aboutsummaryrefslogtreecommitdiff
path: root/scumm/nut_renderer.h
diff options
context:
space:
mode:
authorMax Horn2003-01-15 03:10:28 +0000
committerMax Horn2003-01-15 03:10:28 +0000
commitb1c570aa6ec368f22249dae0cb9baf2848ced8d1 (patch)
treee4eca2f97352259cb496f0f2c47ee2733ad076d2 /scumm/nut_renderer.h
parent5a180bbea9dc15175515dc9eb79b8374c7a33e23 (diff)
downloadscummvm-rg350-b1c570aa6ec368f22249dae0cb9baf2848ced8d1.tar.gz
scummvm-rg350-b1c570aa6ec368f22249dae0cb9baf2848ced8d1.tar.bz2
scummvm-rg350-b1c570aa6ec368f22249dae0cb9baf2848ced8d1.zip
made NUT font rendered honor _ignoreCharsetMask
svn-id: r6466
Diffstat (limited to 'scumm/nut_renderer.h')
-rw-r--r--scumm/nut_renderer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/nut_renderer.h b/scumm/nut_renderer.h
index 03bee41c89..df0d484f23 100644
--- a/scumm/nut_renderer.h
+++ b/scumm/nut_renderer.h
@@ -41,8 +41,8 @@ public:
~NutRenderer();
bool loadFont(const char *filename, const char *dir);
- void drawChar(char c, int32 x, int32 y, byte color);
- void drawString(const char *string, int32 x, int32 y, byte color, int32 mode);
+ void drawChar(char c, int32 x, int32 y, byte color, bool useMask);
+// void drawString(const char *string, int32 x, int32 y, byte color, int32 mode);
int32 getCharWidth(char c);
int32 getCharHeight(char c);
int32 getStringWidth(char *string);