diff options
author | Eugene Sandulenko | 2016-01-04 20:19:40 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2016-01-04 20:19:40 +0100 |
commit | 5c129d65da74be32b8c630a893352b96e06a8e86 (patch) | |
tree | 4ef76720bdfdac2d587ebf889b4fcb9345d09b47 /engines/wage | |
parent | e2fa8c1de7e252bc8ca1f869e800fa82762decf2 (diff) | |
download | scummvm-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.cpp | 2 |
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) { |