aboutsummaryrefslogtreecommitdiff
path: root/engines/chewy/text.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2016-10-07 03:13:16 +0300
committerFilippos Karapetis2016-10-07 03:13:16 +0300
commit7002ede1ed03b1588e18ff41129e000a63081792 (patch)
treea786f1a2527063480e18cf0dae2cc72760e20acf /engines/chewy/text.cpp
parentcf7c010d47e8d2babdd051aaccc4b26e42468bb4 (diff)
downloadscummvm-rg350-7002ede1ed03b1588e18ff41129e000a63081792.tar.gz
scummvm-rg350-7002ede1ed03b1588e18ff41129e000a63081792.tar.bz2
scummvm-rg350-7002ede1ed03b1588e18ff41129e000a63081792.zip
CHEWY: Const correctness
Diffstat (limited to 'engines/chewy/text.cpp')
-rw-r--r--engines/chewy/text.cpp2
1 files changed, 1 insertions, 1 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());