diff options
Diffstat (limited to 'engines/draci/font.h')
-rw-r--r-- | engines/draci/font.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/draci/font.h b/engines/draci/font.h index c108a4493e..cdce071e5a 100644 --- a/engines/draci/font.h +++ b/engines/draci/font.h @@ -61,12 +61,12 @@ public: uint8 getFontHeight() const { return _fontHeight; }; uint8 getMaxCharWidth() const { return _maxCharWidth; }; uint8 getCharWidth(byte chr) const; - void drawChar(Surface *dst, uint8 chr, int tx, int ty) const; + void drawChar(Surface *dst, uint8 chr, int tx, int ty, bool markDirty = true) const; void drawString(Surface *dst, const byte *str, uint len, int x, int y, - int spacing = 0) const; + int spacing, bool markDirty = true) const; void drawString(Surface *dst, const Common::String &str, - int x, int y, int spacing = 0) const; + int x, int y, int spacing, bool markDirty = true) const; int getStringWidth(const Common::String &str, int spacing = 0) const; void setColour(uint8 colour); |