From 7250aeae66f4736cdc35d3a897ef28b646c0d425 Mon Sep 17 00:00:00 2001 From: qndel Date: Mon, 25 Oct 2021 16:56:05 +0200 Subject: [PATCH] tweak automap colors --- Source/automap.cpp | 6 +++--- Source/debug.cpp | 3 +-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Source/automap.cpp b/Source/automap.cpp index 8751c1e95..c0a5a4701 100644 --- a/Source/automap.cpp +++ b/Source/automap.cpp @@ -283,11 +283,11 @@ void DrawAutomapTile(const Surface &out, Point center, Point map) switch (explorationType) { case MAP_EXP_SHRINE: colorDim = PAL16_GRAY + 11; - colorBright = PAL16_GRAY + 9; + colorBright = PAL16_GRAY + 3; break; case MAP_EXP_OTHERS: - colorDim = PAL16_YELLOW + 11; - colorBright = PAL16_YELLOW + 9; + colorDim = PAL16_BEIGE + 10; + colorBright = PAL16_BEIGE + 2; break; case MAP_EXP_SELF: case MAP_EXP_NONE: diff --git a/Source/debug.cpp b/Source/debug.cpp index 5e31919c4..33535034a 100644 --- a/Source/debug.cpp +++ b/Source/debug.cpp @@ -346,8 +346,7 @@ std::string DebugCmdMapHide(const string_view parameter) { for (int x = 0; x < DMAXX; x++) for (int y = 0; y < DMAXY; y++) - if (AutomapView[x][y] == MAP_EXP_SHRINE) - AutomapView[x][y] = MAP_EXP_NONE; + AutomapView[x][y] = MAP_EXP_NONE; return "The way is made unclear when viewed from below"; }