Fixed an incorrect language specifier in ImGUI font initialization
for Korean language.
This commit is contained in:
parent
b234a1b7a7
commit
9fca67d281
@ -74,7 +74,7 @@ void ImGuiWrapper::set_language(const std::string &language)
|
||||
ranges = ImGui::GetIO().Fonts->GetGlyphRangesCyrillic();
|
||||
} else if (lang == "jp") {
|
||||
ranges = ImGui::GetIO().Fonts->GetGlyphRangesJapanese();
|
||||
} else if (lang == "kr") {
|
||||
} else if (lang == "ko") {
|
||||
ranges = ImGui::GetIO().Fonts->GetGlyphRangesKorean();
|
||||
} else if (lang == "zh") {
|
||||
ranges = ImGui::GetIO().Fonts->GetGlyphRangesChineseSimplifiedCommon();
|
||||
|
Loading…
Reference in New Issue
Block a user