diff options
author | athrxx | 2011-12-27 20:57:58 +0100 |
---|---|---|
committer | athrxx | 2011-12-28 00:01:28 +0100 |
commit | e6b6099d54c05a95530125e95da69a90aff4863d (patch) | |
tree | 6e3715fa5a84172a86cc21409d74f96846708c6a /engines | |
parent | 37c046339dfc70f29c163457c72158e02a6c1cdb (diff) | |
download | scummvm-rg350-e6b6099d54c05a95530125e95da69a90aff4863d.tar.gz scummvm-rg350-e6b6099d54c05a95530125e95da69a90aff4863d.tar.bz2 scummvm-rg350-e6b6099d54c05a95530125e95da69a90aff4863d.zip |
KYRA: (EOB) - fix minor color glitch
Diffstat (limited to 'engines')
-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); } |