From ea3a8ee171f1dada5e69136cf5bb380e903af3ac Mon Sep 17 00:00:00 2001 From: Rangi Date: Mon, 13 Jul 2026 16:21:51 -0400 Subject: [PATCH] Use magenta color for some verbose output which was missing it --- src/gfx/process.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gfx/process.cpp b/src/gfx/process.cpp index d51d0df0..493728a4 100644 --- a/src/gfx/process.cpp +++ b/src/gfx/process.cpp @@ -1051,6 +1051,7 @@ void process() { // Override the previous color set that this one is a strict superset of if (checkVerbosity(VERB_DEBUG)) { + style_Set(stderr, STYLE_MAGENTA, false); fprintf( stderr, "- Tile (%" PRIu32 ", %" PRIu32 ") overrides color set #%zu: [", @@ -1066,6 +1067,7 @@ void process() { fprintf(stderr, "$%04x, ", color); } fputs("]\n", stderr); + style_Reset(stderr); } colorSets[n] = colorSet; @@ -1115,6 +1117,7 @@ void process() { colorSets.push_back(colorSet); if (checkVerbosity(VERB_DEBUG)) { + style_Set(stderr, STYLE_MAGENTA, false); fprintf( stderr, "- Tile (%" PRIu32 ", %" PRIu32 ") adds color set #%zu: [", @@ -1126,6 +1129,7 @@ void process() { fprintf(stderr, "$%04x, ", color); } fputs("]\n", stderr); + style_Reset(stderr); } continue_visiting_tiles:;