diff options
Diffstat (limited to 'scumm/smush')
-rw-r--r-- | scumm/smush/smush_font.cpp | 2 |
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) |