diff options
-rw-r--r-- | engines/kyra/gui_eob.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/kyra/gui_eob.cpp b/engines/kyra/gui_eob.cpp index 1ccb60ada1..a80ef03201 100644 --- a/engines/kyra/gui_eob.cpp +++ b/engines/kyra/gui_eob.cpp @@ -464,8 +464,8 @@ void EoBCoreEngine::gui_drawCharPortraitStatusFrame(int index) { } } else { - _screen->drawClippedLine(x, y, x + 62, y, guiSettings()->colors.frame1); - _screen->drawClippedLine(x, y + 49, x + 62, y + 49, guiSettings()->colors.frame2); + _screen->drawClippedLine(x, y, x + 62, y, guiSettings()->colors.frame2); + _screen->drawClippedLine(x, y + 49, x + 62, y + 49, guiSettings()->colors.frame1); _screen->drawClippedLine(x - 1, y, x - 1, y + 50, 12); _screen->drawClippedLine(x + 63, y, x + 63, y + 50, 12); } |