diff options
author | Filippos Karapetis | 2007-07-14 17:39:47 +0000 |
---|---|---|
committer | Filippos Karapetis | 2007-07-14 17:39:47 +0000 |
commit | a7adb5888c5a88e8b88a707f7740bcf211c011a6 (patch) | |
tree | f8059718eddd018523eac6a8b8ef85b9454fcdf5 /engines | |
parent | c8a8d806e27442cad680ce1d9643d28e6b4af97c (diff) | |
download | scummvm-rg350-a7adb5888c5a88e8b88a707f7740bcf211c011a6.tar.gz scummvm-rg350-a7adb5888c5a88e8b88a707f7740bcf211c011a6.tar.bz2 scummvm-rg350-a7adb5888c5a88e8b88a707f7740bcf211c011a6.zip |
ITE: Fixed some of the incorrectly drawn dots of the menu buttons
svn-id: r28076
Diffstat (limited to 'engines')
-rw-r--r-- | engines/saga/interface.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/saga/interface.cpp b/engines/saga/interface.cpp index 55b2b0a996..12d027d124 100644 --- a/engines/saga/interface.cpp +++ b/engines/saga/interface.cpp @@ -2016,10 +2016,10 @@ void Interface::drawButtonBox(Surface *ds, const Rect& rect, ButtonKind kind, bo ((byte *)ds->getBasePtr(x, ye))[0] = cornerColor; ((byte *)ds->getBasePtr(xe, y))[0] = cornerColor; ((byte *)ds->getBasePtr(xe, ye))[0] = cornerColor; - ds->hLine(x + 1, y, x + 1 + w - 2, frameColor); - ds->hLine(x + 1, ye, x + 1 + w - 2, frameColor); - ds->vLine(x, y + 1, y + 1 + h - 2, frameColor); - ds->vLine(xe, y + 1, y + 1 + h - 2, frameColor); + ds->hLine(x + 1, y, x + w - 2, frameColor); + ds->hLine(x + 1, ye, x + w - 2, frameColor); + ds->vLine(x, y + 1, y + h - 2, frameColor); + ds->vLine(xe, y + 1, y + h - 2, frameColor); x++; y++; |