Use magenta color for some verbose output which was missing it

This commit is contained in:
Rangi
2026-07-13 17:47:38 -04:00
parent f0419eb183
commit ea3a8ee171
+4
View File
@@ -1051,6 +1051,7 @@ void process() {
// Override the previous color set that this one is a strict superset of // Override the previous color set that this one is a strict superset of
if (checkVerbosity(VERB_DEBUG)) { if (checkVerbosity(VERB_DEBUG)) {
style_Set(stderr, STYLE_MAGENTA, false);
fprintf( fprintf(
stderr, stderr,
"- Tile (%" PRIu32 ", %" PRIu32 ") overrides color set #%zu: [", "- Tile (%" PRIu32 ", %" PRIu32 ") overrides color set #%zu: [",
@@ -1066,6 +1067,7 @@ void process() {
fprintf(stderr, "$%04x, ", color); fprintf(stderr, "$%04x, ", color);
} }
fputs("]\n", stderr); fputs("]\n", stderr);
style_Reset(stderr);
} }
colorSets[n] = colorSet; colorSets[n] = colorSet;
@@ -1115,6 +1117,7 @@ void process() {
colorSets.push_back(colorSet); colorSets.push_back(colorSet);
if (checkVerbosity(VERB_DEBUG)) { if (checkVerbosity(VERB_DEBUG)) {
style_Set(stderr, STYLE_MAGENTA, false);
fprintf( fprintf(
stderr, stderr,
"- Tile (%" PRIu32 ", %" PRIu32 ") adds color set #%zu: [", "- Tile (%" PRIu32 ", %" PRIu32 ") adds color set #%zu: [",
@@ -1126,6 +1129,7 @@ void process() {
fprintf(stderr, "$%04x, ", color); fprintf(stderr, "$%04x, ", color);
} }
fputs("]\n", stderr); fputs("]\n", stderr);
style_Reset(stderr);
} }
continue_visiting_tiles:; continue_visiting_tiles:;