diff options
| author | Adrian Frühwirth | 2018-04-22 00:49:39 +0200 | 
|---|---|---|
| committer | Adrian Frühwirth | 2018-04-22 00:56:21 +0200 | 
| commit | a20f90cbb7bfd61ee32ccd32603766de02c03ac8 (patch) | |
| tree | 584197b20b101d746b64a20e3f1073b4b8808bb7 /engines/adl/graphics.cpp | |
| parent | dd425413b5c69861fffe0071e6ca74b33a78c341 (diff) | |
| download | scummvm-rg350-a20f90cbb7bfd61ee32ccd32603766de02c03ac8.tar.gz scummvm-rg350-a20f90cbb7bfd61ee32ccd32603766de02c03ac8.tar.bz2 scummvm-rg350-a20f90cbb7bfd61ee32ccd32603766de02c03ac8.zip | |
JANITORIAL: Fix formatting
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)) | 
