Fixed an incorrect language specifier in ImGUI font initialization
for Korean language.
This commit is contained in:
parent
b234a1b7a7
commit
9fca67d281
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue