mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-10-30 08:01:01 +00:00
Fix display of star
This commit is contained in:
parent
90d1a71b64
commit
2acb51b314
1 changed files with 1 additions and 1 deletions
|
|
@ -137,7 +137,7 @@ void djui_font_convert_to_smcode(char* text) {
|
|||
}
|
||||
|
||||
bool djui_font_valid_smcode(char c) {
|
||||
if (c >= '!' && c <= '~') {
|
||||
if (c >= '!' && (u8)c <= ((u8)'~' + 1)) {
|
||||
return true;
|
||||
} else if (c == ' ') {
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue