diff options
Diffstat (limited to 'engines/sci/graphics/paint32.cpp')
| -rw-r--r-- | engines/sci/graphics/paint32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/graphics/paint32.cpp b/engines/sci/graphics/paint32.cpp index c0811298bb..711efc9816 100644 --- a/engines/sci/graphics/paint32.cpp +++ b/engines/sci/graphics/paint32.cpp @@ -52,7 +52,7 @@ void GfxPaint32::fillRect(Common::Rect rect, byte color) { int16 y, x; for (y = rect.top; y < rect.bottom; y++) { for (x = rect.left; x < rect.right; x++) { - _screen->putPixel(x, y, SCI_SCREEN_MASK_VISUAL, color, 0, 0); + _screen->putPixel(x, y, GFX_SCREEN_MASK_VISUAL, color, 0, 0); } } } |
