diff options
Diffstat (limited to 'scumm/smush/smush_font.cpp')
-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 683547f212..20e809e5aa 100644 --- a/scumm/smush/smush_font.cpp +++ b/scumm/smush/smush_font.cpp @@ -138,7 +138,7 @@ int SmushFont::draw2byte(byte *buffer, int dst_width, int x, int y, int idx) { for (int i = 0; i < w; i++) { if ((i % 8) == 0) bits = *src++; - if (bits & revBitMask[i % 8]) { + if (bits & revBitMask(i % 8)) { dst[i + 1] = 0; dst[dst_width + i] = 0; dst[dst_width + i + 1] = 0; |