aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/pet_control/pet_text.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2016-06-04 15:56:47 -0400
committerPaul Gilbert2016-07-15 19:19:28 -0400
commit66efdc239c88124296acdcb45427d83793934e91 (patch)
tree2d4056d49580b7b2537c1ce5e98347a41c1ae826 /engines/titanic/pet_control/pet_text.cpp
parentebb60288716bc4876183989d04d7bb2208b9fceb (diff)
downloadscummvm-rg350-66efdc239c88124296acdcb45427d83793934e91.tar.gz
scummvm-rg350-66efdc239c88124296acdcb45427d83793934e91.tar.bz2
scummvm-rg350-66efdc239c88124296acdcb45427d83793934e91.zip
TITANIC: gcc compilation fixes
Diffstat (limited to 'engines/titanic/pet_control/pet_text.cpp')
-rw-r--r--engines/titanic/pet_control/pet_text.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/pet_control/pet_text.cpp b/engines/titanic/pet_control/pet_text.cpp
index a8d9ba6eb5..f87b037109 100644
--- a/engines/titanic/pet_control/pet_text.cpp
+++ b/engines/titanic/pet_control/pet_text.cpp
@@ -404,7 +404,7 @@ bool CPetText::handleKey(char c) {
return true;
default:
- if (c >= 32 && c <= 127)
+ if ((byte)c >= 32 && (byte)c <= 127)
appendText(CString(c, 1));
break;
}