Skip to content

Commit

Permalink
Merge pull request #79228 from EliadOArias/FIx_zh_CN_and_zh_TW
Browse files Browse the repository at this point in the history
Fix font mistake on zh_CN and zh_TW
  • Loading branch information
akrieger authored Jan 18, 2025
2 parents 8977bf7 + e82471a commit 018223c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cata_imgui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -345,9 +345,9 @@ static void AddGlyphRangesFromCLDR( ImFontGlyphRangesBuilder *b, const std::stri
} else if( lang == "uk_UA" ) {
AddGlyphRangesFromCLDRForUK_UA( b );
} else if( lang == "zh_CN" ) {
AddGlyphRangesFromCLDRForZH_HANT( b );
} else if( lang == "zh_TW" ) {
AddGlyphRangesFromCLDRForZH_HANS( b );
} else if( lang == "zh_TW" ) {
AddGlyphRangesFromCLDRForZH_HANT( b );
}
// NOLINTEND(bugprone-branch-clone)
}
Expand Down

0 comments on commit 018223c

Please sign in to comment.