aboutsummaryrefslogtreecommitdiff
path: root/engines/chewy
diff options
context:
space:
mode:
Diffstat (limited to 'engines/chewy')
-rw-r--r--engines/chewy/text.cpp2
-rw-r--r--engines/chewy/text.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/chewy/text.cpp b/engines/chewy/text.cpp
index 5a4a526eee..d56246f4ed 100644
--- a/engines/chewy/text.cpp
+++ b/engines/chewy/text.cpp
@@ -181,7 +181,7 @@ Font::~Font() {
_fontSurface.free();
}
-::Graphics::Surface *Font::getLine(Common::String text) {
+::Graphics::Surface *Font::getLine(const Common::String text) {
::Graphics::Surface *line = new ::Graphics::Surface();
line->create(text.size() * _width, _height, ::Graphics::PixelFormat::createFormatCLUT8());
diff --git a/engines/chewy/text.h b/engines/chewy/text.h
index f729205a93..564f6011b3 100644
--- a/engines/chewy/text.h
+++ b/engines/chewy/text.h
@@ -100,7 +100,7 @@ public:
Font(Common::String filename);
virtual ~Font();
- ::Graphics::Surface *getLine(Common::String text);
+ ::Graphics::Surface *getLine(const Common::String text);
private:
uint16 _count, _first, _last, _width, _height;