diff options
author | Johannes Schickel | 2009-09-21 01:14:50 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-09-21 01:14:50 +0000 |
commit | 94e359d3fb1b061cb452e35a2b63eed4f3d77cd9 (patch) | |
tree | eb7b9465b106d933df52d86a5e3e476b5cfa7d98 | |
parent | 9eabcb7baa6f6bf0db42b829f19178321b3a7176 (diff) | |
download | scummvm-rg350-94e359d3fb1b061cb452e35a2b63eed4f3d77cd9.tar.gz scummvm-rg350-94e359d3fb1b061cb452e35a2b63eed4f3d77cd9.tar.bz2 scummvm-rg350-94e359d3fb1b061cb452e35a2b63eed4f3d77cd9.zip |
Fix box outline color for FW Amiga.
svn-id: r44229
-rw-r--r-- | engines/cine/gfx.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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 |