Proper color for informational text.

This commit is contained in:
wb2osz 2024-02-04 22:40:40 +00:00
parent 4af7b22fa9
commit 4d2d814ee1
1 changed files with 3 additions and 0 deletions

View File

@ -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) {