aboutsummaryrefslogtreecommitdiff
path: root/scumm/smush
diff options
context:
space:
mode:
authorPaweł Kołodziejski2003-06-04 20:13:16 +0000
committerPaweł Kołodziejski2003-06-04 20:13:16 +0000
commitad04b310bc255a75997e97584aa02ec62c7daf4d (patch)
tree2cc60d4a370e9a8766251a4f1aa7f79888b42c03 /scumm/smush
parent10b31ba7f05ef30c0eefaa7d779a56c0f889bbf9 (diff)
downloadscummvm-rg350-ad04b310bc255a75997e97584aa02ec62c7daf4d.tar.gz
scummvm-rg350-ad04b310bc255a75997e97584aa02ec62c7daf4d.tar.bz2
scummvm-rg350-ad04b310bc255a75997e97584aa02ec62c7daf4d.zip
fix warning
svn-id: r8298
Diffstat (limited to 'scumm/smush')
-rw-r--r--scumm/smush/smush_font.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/smush/smush_font.cpp b/scumm/smush/smush_font.cpp
index 23fee74b3a..51f788997d 100644
--- a/scumm/smush/smush_font.cpp
+++ b/scumm/smush/smush_font.cpp
@@ -252,7 +252,7 @@ int SmushFont::draw2byte(byte *buffer, int dst_width, int x, int y, int idx) {
} else {
char color = (_color != -1) ? _color : 1;
if (_new_colors)
- color = 0xff; //FIXME;
+ color = (char)0xff; //FIXME;
for(int j = 0; j < h; j++) {
for(int i = 0; i < w; i++) {
if((i % 8) == 0)