diff options
author | Martin Kiewitz | 2016-02-05 14:23:23 +0100 |
---|---|---|
committer | Martin Kiewitz | 2016-02-05 14:23:23 +0100 |
commit | f954603f8d0ab7442dded19acaec8e597cbe478e (patch) | |
tree | 2ef3b10fc3ac5a8cdd054734d765b0ad83ba3b47 | |
parent | efb65324688f20cc534a25312f558f9264125762 (diff) | |
download | scummvm-rg350-f954603f8d0ab7442dded19acaec8e597cbe478e.tar.gz scummvm-rg350-f954603f8d0ab7442dded19acaec8e597cbe478e.tar.bz2 scummvm-rg350-f954603f8d0ab7442dded19acaec8e597cbe478e.zip |
AGI: GfxMgr::drawBox now using kRenderMacintosh
-rw-r--r-- | engines/agi/graphics.cpp | 2 |
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); |