aboutsummaryrefslogtreecommitdiff
path: root/engines/agi/graphics.cpp
diff options
context:
space:
mode:
authorMartin Kiewitz2016-02-05 14:23:23 +0100
committerMartin Kiewitz2016-02-05 14:23:23 +0100
commitf954603f8d0ab7442dded19acaec8e597cbe478e (patch)
tree2ef3b10fc3ac5a8cdd054734d765b0ad83ba3b47 /engines/agi/graphics.cpp
parentefb65324688f20cc534a25312f558f9264125762 (diff)
downloadscummvm-rg350-f954603f8d0ab7442dded19acaec8e597cbe478e.tar.gz
scummvm-rg350-f954603f8d0ab7442dded19acaec8e597cbe478e.tar.bz2
scummvm-rg350-f954603f8d0ab7442dded19acaec8e597cbe478e.zip
AGI: GfxMgr::drawBox now using kRenderMacintosh
Diffstat (limited to 'engines/agi/graphics.cpp')
-rw-r--r--engines/agi/graphics.cpp2
1 files changed, 1 insertions, 1 deletions
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);