Skip to content

Commit

Permalink
vile: fix breakage on rendering of embedded delete char
Browse files Browse the repository at this point in the history
  • Loading branch information
EtchedPixels committed Jul 17, 2024
1 parent cb8438b commit f1c7207
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Applications/util/vile.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ void con_putc(uint_fast8_t c)
con_putc(' ');
return;
}
if (c >= 127) {
if (c > 127) {
con_puts("\\x");
con_putc(hex[c >> 4]);
con_putc(hex[c & 0x0F]);
Expand Down

0 comments on commit f1c7207

Please sign in to comment.