mirror of
https://github.com/HarbourMasters/SpaghettiKart
synced 2026-07-08 14:37:09 -04:00
Fix EUC-JP characters (#172)
* Fix euc jp characters * Update menu_items.c
This commit is contained in:
@@ -77,7 +77,8 @@ void MultiplayerWindow::DrawElement() {
|
||||
ImGui::Spacing();
|
||||
|
||||
for (size_t i = 0; i < NUM_PLAYERS; i++) {
|
||||
if (D_800E76A8[i] == NULL || D_800E76A8[i] == "ーーーー") {
|
||||
// These are euc-jp characters that look sort of like a hyphen -
|
||||
if (D_800E76A8[i] == NULL || D_800E76A8[i] == "\xA1\xBC\xA1\xBC\xA1\xBC\xA1\xBC") {
|
||||
break;
|
||||
}
|
||||
ImGui::SameLine();
|
||||
|
||||
Reference in New Issue
Block a user