Merge branch 'caret-color-letter' into 'next'

Make caret coloring support letters.

See merge request STJr/SRB2!1295
This commit is contained in:
James R 2020-12-10 15:41:02 -05:00
commit d8bf015467
1 changed files with 6 additions and 0 deletions

View File

@ -59,6 +59,12 @@ ATTRINLINE static FUNCINLINE char myfget_color(MYFILE *f)
if (c >= '0' && c <= '9')
return 0x80+(c-'0');
c = tolower(c);
if (c >= 'a' && c <= 'f')
return 0x80+10+(c-'a');
return 0x80; // Unhandled -- default to no color
}