aboutsummaryrefslogtreecommitdiff
path: root/engines/saga/interface.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2007-07-14 18:11:14 +0000
committerFilippos Karapetis2007-07-14 18:11:14 +0000
commit5aba81d3e756e340f5acee051f1f036d0d50fcf6 (patch)
tree5a8d28410e3012090a28d6c92f0e5f6cbf2cf302 /engines/saga/interface.cpp
parenta7adb5888c5a88e8b88a707f7740bcf211c011a6 (diff)
downloadscummvm-rg350-5aba81d3e756e340f5acee051f1f036d0d50fcf6.tar.gz
scummvm-rg350-5aba81d3e756e340f5acee051f1f036d0d50fcf6.tar.bz2
scummvm-rg350-5aba81d3e756e340f5acee051f1f036d0d50fcf6.zip
ITE: Fixed some more incorrect dots on dialog buttons
svn-id: r28077
Diffstat (limited to 'engines/saga/interface.cpp')
-rw-r--r--engines/saga/interface.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/saga/interface.cpp b/engines/saga/interface.cpp
index 12d027d124..5d93807da1 100644
--- a/engines/saga/interface.cpp
+++ b/engines/saga/interface.cpp
@@ -2029,7 +2029,7 @@ void Interface::drawButtonBox(Surface *ds, const Rect& rect, ButtonKind kind, bo
h -= 2;
ds->vLine(x, y, y + h - 1, odl);
ds->hLine(x, ye, x + w - 1, odl);
- ds->vLine(xe, y, y + h - 1, our);
+ ds->vLine(xe, y, y + h - 2, our);
ds->hLine(x + 1, y, x + 1 + w - 2, our);
x++;
@@ -2042,7 +2042,7 @@ void Interface::drawButtonBox(Surface *ds, const Rect& rect, ButtonKind kind, bo
((byte *)ds->getBasePtr(xe, ye))[0] = fillColor;
ds->vLine(x, y + 1, y + 1 + h - 2, idl);
ds->hLine(x + 1, ye, x + 1 + w - 2, idl);
- ds->vLine(xe, y, y + h - 1, iur);
+ ds->vLine(xe, y, y + h - 2, iur);
ds->hLine(x + 1, y, x + 1 + w - 2, iur);
x++; y++;