aboutsummaryrefslogtreecommitdiff
path: root/queen
diff options
context:
space:
mode:
authorOliver Kiehl2003-10-07 15:27:53 +0000
committerOliver Kiehl2003-10-07 15:27:53 +0000
commit0281f6b6d654ebebb7e8c24fe53586d2a2ca3a18 (patch)
tree02cdcce586640e6886f02104fff96a53bf290279 /queen
parentda9fcd9cebf4f381696820e062e368b9be9b610a (diff)
downloadscummvm-rg350-0281f6b6d654ebebb7e8c24fe53586d2a2ca3a18.tar.gz
scummvm-rg350-0281f6b6d654ebebb7e8c24fe53586d2a2ca3a18.tar.bz2
scummvm-rg350-0281f6b6d654ebebb7e8c24fe53586d2a2ca3a18.zip
fix gcc 3.3 warning
svn-id: r10673
Diffstat (limited to 'queen')
-rw-r--r--queen/graphics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/queen/graphics.cpp b/queen/graphics.cpp
index 463863f7a7..81a831201d 100644
--- a/queen/graphics.cpp
+++ b/queen/graphics.cpp
@@ -804,7 +804,7 @@ uint16 Graphics::textLength(const char* text) {
uint16 len = 0;
while (*text) {
- len += FONT_SIZES[ *text ];
+ len += FONT_SIZES[ (int)*text ];
++text;
}
return len;