diff options
-rw-r--r-- | engines/groovie/font.cpp | 2 | ||||
-rw-r--r-- | engines/groovie/font.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/groovie/font.cpp b/engines/groovie/font.cpp index e7365fcfa5..ece8447735 100644 --- a/engines/groovie/font.cpp +++ b/engines/groovie/font.cpp @@ -46,7 +46,7 @@ Font::~Font() { delete _sphinxfnt; } -void Font::printstring(char *messagein) { +void Font::printstring(const char *messagein) { uint16 totalwidth = 0, currxoffset, i; char message[15]; diff --git a/engines/groovie/font.h b/engines/groovie/font.h index 1d32f1a50c..1a4a967fa6 100644 --- a/engines/groovie/font.h +++ b/engines/groovie/font.h @@ -35,7 +35,7 @@ class Font { public: Font(OSystem *syst); ~Font(); - void printstring(char *messagein); + void printstring(const char *messagein); private: OSystem *_syst; |