aboutsummaryrefslogtreecommitdiff
path: root/engines/wage
diff options
context:
space:
mode:
authorEugene Sandulenko2016-01-04 20:19:40 +0100
committerEugene Sandulenko2016-01-04 20:19:40 +0100
commit5c129d65da74be32b8c630a893352b96e06a8e86 (patch)
tree4ef76720bdfdac2d587ebf889b4fcb9345d09b47 /engines/wage
parente2fa8c1de7e252bc8ca1f869e800fa82762decf2 (diff)
downloadscummvm-rg350-5c129d65da74be32b8c630a893352b96e06a8e86.tar.gz
scummvm-rg350-5c129d65da74be32b8c630a893352b96e06a8e86.tar.bz2
scummvm-rg350-5c129d65da74be32b8c630a893352b96e06a8e86.zip
WAGE: Fixed ellipse rendering
Diffstat (limited to 'engines/wage')
-rw-r--r--engines/wage/design.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wage/design.cpp b/engines/wage/design.cpp
index 7b7365be9f..19887a06f6 100644
--- a/engines/wage/design.cpp
+++ b/engines/wage/design.cpp
@@ -386,7 +386,7 @@ void Design::drawOval(Graphics::Surface *surface, Common::ReadStream &in, bool m
pd.thickness = borderThickness;
if (borderThickness > 0 && borderFillType <= patterns.size())
- drawEllipse(x1, y1, x2-1, y2-1, true, drawPixel, &pd);
+ drawEllipse(x1, y1, x2-1, y2-1, false, drawPixel, &pd);
}
void Design::drawBitmap(Graphics::Surface *surface, Common::ReadStream &in, bool mask) {