diff options
Diffstat (limited to 'engines/m4/font.h')
-rw-r--r-- | engines/m4/font.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/m4/font.h b/engines/m4/font.h index f75e76e425..121c179562 100644 --- a/engines/m4/font.h +++ b/engines/m4/font.h @@ -67,7 +67,7 @@ public: void setColour(uint8 colour) { setColor(colour); } void setColours(uint8 alt1, uint8 alt2, uint8 foreground) { setColors(alt1, alt2, foreground); } - int32 getWidth(char *text, int spaceWidth = -1); + int32 getWidth(const char *text, int spaceWidth = -1); int32 getHeight() const { return _maxHeight; } int32 getMaxWidth() const { return _maxWidth; } int32 write(M4Surface *surface, const char *text, int x, int y, int width, int spaceWidth, uint8 colors[]); |