diff options
author | Oliver Kiehl | 2003-10-07 15:27:53 +0000 |
---|---|---|
committer | Oliver Kiehl | 2003-10-07 15:27:53 +0000 |
commit | 0281f6b6d654ebebb7e8c24fe53586d2a2ca3a18 (patch) | |
tree | 02cdcce586640e6886f02104fff96a53bf290279 | |
parent | da9fcd9cebf4f381696820e062e368b9be9b610a (diff) | |
download | scummvm-rg350-0281f6b6d654ebebb7e8c24fe53586d2a2ca3a18.tar.gz scummvm-rg350-0281f6b6d654ebebb7e8c24fe53586d2a2ca3a18.tar.bz2 scummvm-rg350-0281f6b6d654ebebb7e8c24fe53586d2a2ca3a18.zip |
fix gcc 3.3 warning
svn-id: r10673
-rw-r--r-- | queen/graphics.cpp | 2 |
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; |