13
0

Mackie Control: Use space as replacement for invaild characters on TC disp

This commit is contained in:
Todd Naugle 2021-08-10 16:17:11 -05:00
parent 563309f6d1
commit 4001fc2cff

View File

@ -1191,7 +1191,7 @@ translate_seven_segment (char achar)
} else if (achar >= 0x20 && achar <= 0x3f) { } else if (achar >= 0x20 && achar <= 0x3f) {
return achar; return achar;
} else { } else {
return 0x00; return 0x20;
} }
} }