From f954603f8d0ab7442dded19acaec8e597cbe478e Mon Sep 17 00:00:00 2001 From: Martin Kiewitz Date: Fri, 5 Feb 2016 14:23:23 +0100 Subject: AGI: GfxMgr::drawBox now using kRenderMacintosh --- engines/agi/graphics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/agi/graphics.cpp b/engines/agi/graphics.cpp index ae4ad813aa..7f367a0685 100644 --- a/engines/agi/graphics.cpp +++ b/engines/agi/graphics.cpp @@ -535,7 +535,7 @@ void GfxMgr::drawBox(int16 x, int16 y, int16 width, int16 height, byte backgroun drawDisplayRect(x + 2, y - height + 3, width - 4, 1, lineColor); drawDisplayRect(x + 2, y - 2, 1, height - 4, lineColor); break; - case Common::kRenderHercA: // TODO/FIXME: This should be for Macintosh. Enum is not available atm + case Common::kRenderMacintosh: // 1 pixel between box and frame lines. Frame lines were black drawDisplayRect(x + 1, y - 1, width - 2, 1, 0); drawDisplayRect(x + width - 2, y - 1, 1, height - 2, 0); -- cgit v1.2.3