diff options
Diffstat (limited to 'engines/adl/graphics.cpp')
-rw-r--r-- | engines/adl/graphics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/adl/graphics.cpp b/engines/adl/graphics.cpp index 0f80bac988..2fcd1473a0 100644 --- a/engines/adl/graphics.cpp +++ b/engines/adl/graphics.cpp @@ -350,7 +350,7 @@ void GraphicsMan_v2::fillAt(Common::Point p, const byte pattern) { const bool stopBit = !_display.getPixelBit(p); // Move up into the open space above p - while (--p.y >= _bounds.top && canFillAt(p, stopBit)); + while (--p.y >= _bounds.top && canFillAt(p, stopBit)) {} // Then fill by moving down while (++p.y < _bounds.bottom && canFillAt(p, stopBit)) |