aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/graphics.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/avalanche/graphics.cpp')
-rw-r--r--engines/avalanche/graphics.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/avalanche/graphics.cpp b/engines/avalanche/graphics.cpp
index eaf547c018..b4ee2a7a3f 100644
--- a/engines/avalanche/graphics.cpp
+++ b/engines/avalanche/graphics.cpp
@@ -126,9 +126,9 @@ Common::Point Graphics::drawArc(::Graphics::Surface &surface, int16 x, int16 y,
int32 yRadius = radius * kScreenWidth / (8 * kScreenHeight); // Just don't ask why...
if (xRadius == 0)
- xRadius ++;
+ xRadius++;
if (yRadius == 0)
- yRadius ++;
+ yRadius++;
// Check for an ellipse with negligable x and y radius.
if ((xRadius <= 1) && (yRadius <= 1))