diff options
Diffstat (limited to 'src/port/ui/MultiplayerWindow.cpp')
| -rw-r--r-- | src/port/ui/MultiplayerWindow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/port/ui/MultiplayerWindow.cpp b/src/port/ui/MultiplayerWindow.cpp index 098d277f1..0345dbaa5 100644 --- a/src/port/ui/MultiplayerWindow.cpp +++ b/src/port/ui/MultiplayerWindow.cpp @@ -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(); |
