diff options
Diffstat (limited to 'graphics/font.h')
-rw-r--r-- | graphics/font.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/graphics/font.h b/graphics/font.h index 134ba8bb48..8f6aa7249f 100644 --- a/graphics/font.h +++ b/graphics/font.h @@ -52,9 +52,9 @@ public: virtual int getMaxCharWidth() const = 0; virtual int getCharWidth(byte chr) const = 0; - virtual void drawChar(const Surface *dst, byte chr, int x, int y, uint32 color) const = 0; + virtual void drawChar(Surface *dst, byte chr, int x, int y, uint32 color) const = 0; - void drawString(const Surface *dst, const Common::String &str, int x, int y, int w, uint32 color, TextAlignment align = kTextAlignLeft, int deltax = 0, bool useEllipsis = true) const; + void drawString(Surface *dst, const Common::String &str, int x, int y, int w, uint32 color, TextAlignment align = kTextAlignLeft, int deltax = 0, bool useEllipsis = true) const; int getStringWidth(const Common::String &str) const; }; @@ -65,7 +65,7 @@ public: virtual int getMaxCharWidth() const { return 8; }; virtual int getCharWidth(byte chr) const; - virtual void drawChar(const Surface *dst, byte chr, int x, int y, uint32 color) const; + virtual void drawChar(Surface *dst, byte chr, int x, int y, uint32 color) const; }; @@ -99,7 +99,7 @@ public: virtual int getMaxCharWidth() const { return desc.maxwidth; }; virtual int getCharWidth(byte chr) const; - virtual void drawChar(const Surface *dst, byte chr, int x, int y, uint32 color) const; + virtual void drawChar(Surface *dst, byte chr, int x, int y, uint32 color) const; }; } // End of namespace Graphics |