From 94e359d3fb1b061cb452e35a2b63eed4f3d77cd9 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Mon, 21 Sep 2009 01:14:50 +0000 Subject: Fix box outline color for FW Amiga. svn-id: r44229 --- engines/cine/gfx.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engines/cine') diff --git a/engines/cine/gfx.cpp b/engines/cine/gfx.cpp index a6efbc1820..9866d86353 100644 --- a/engines/cine/gfx.cpp +++ b/engines/cine/gfx.cpp @@ -286,7 +286,7 @@ void FWRenderer::drawMessage(const char *str, int x, int y, int width, int color ty += 9; if (color >= 0) { drawPlainBox(x, ty, width, 4, color); - drawDoubleBorder(x, y, width, ty - y + 4, g_cine->getPlatform() == Common::kPlatformAmiga ? 1 : 2); + drawDoubleBorder(x, y, width, ty - y + 4, g_cine->getPlatform() == Common::kPlatformAmiga ? 18 : 2); } } @@ -804,7 +804,7 @@ void FWRenderer::drawMenu(const CommandeType *items, unsigned int height, int x, } drawPlainBox(x, ty, width, 4, _messageBg); - drawDoubleBorder(x, y, width, ty - y + 4, g_cine->getPlatform() == Common::kPlatformAmiga ? 1 : 2); + drawDoubleBorder(x, y, width, ty - y + 4, g_cine->getPlatform() == Common::kPlatformAmiga ? 18 : 2); } /*! \brief Draw text input box @@ -877,7 +877,7 @@ void FWRenderer::drawInputBox(const char *info, const char *input, int cursor, i ty += 9; drawPlainBox(x, ty, width, 4, _messageBg); - drawDoubleBorder(x, y, width, ty - y + 4, g_cine->getPlatform() == Common::kPlatformAmiga ? 1 : 2); + drawDoubleBorder(x, y, width, ty - y + 4, g_cine->getPlatform() == Common::kPlatformAmiga ? 18 : 2); } /*! \brief Fade to black -- cgit v1.2.3