diff options
author | Filippos Karapetis | 2007-07-14 18:11:14 +0000 |
---|---|---|
committer | Filippos Karapetis | 2007-07-14 18:11:14 +0000 |
commit | 5aba81d3e756e340f5acee051f1f036d0d50fcf6 (patch) | |
tree | 5a8d28410e3012090a28d6c92f0e5f6cbf2cf302 | |
parent | a7adb5888c5a88e8b88a707f7740bcf211c011a6 (diff) | |
download | scummvm-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
-rw-r--r-- | engines/saga/interface.cpp | 4 |
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++; |