Fix display of star
This commit is contained in:
parent
90d1a71b64
commit
2acb51b314
|
@ -137,7 +137,7 @@ void djui_font_convert_to_smcode(char* text) {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool djui_font_valid_smcode(char c) {
|
bool djui_font_valid_smcode(char c) {
|
||||||
if (c >= '!' && c <= '~') {
|
if (c >= '!' && (u8)c <= ((u8)'~' + 1)) {
|
||||||
return true;
|
return true;
|
||||||
} else if (c == ' ') {
|
} else if (c == ' ') {
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue