From 4d2d814ee1651cdba4f13de5e7fffc82bb6fbad5 Mon Sep 17 00:00:00 2001 From: wb2osz Date: Sun, 4 Feb 2024 22:40:40 +0000 Subject: [PATCH] Proper color for informational text. --- src/deviceid.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/deviceid.c b/src/deviceid.c index 594b20e..221e65b 100644 --- a/src/deviceid.c +++ b/src/deviceid.c @@ -240,7 +240,10 @@ void deviceid_init(void) { FILE *fp = NULL; for (int n = 0; search_locations[n] != NULL && fp == NULL; n++) { +#if TEST + text_color_set(DW_COLOR_INFO); dw_printf ("Trying %s\n", search_locations[n]); +#endif fp = fopen(search_locations[n], "r"); #if TEST if (fp != NULL) {