Skip to content

Commit

Permalink
remove "forceUnicodeFont" #416
Browse files Browse the repository at this point in the history
  • Loading branch information
ShirosakiMio committed Jun 24, 2024
1 parent 8100187 commit db85428
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions FCL/src/main/java/com/tungsten/fcl/game/FCLGameLauncher.java
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,6 @@ private void modifyOptions(File optionsFile, boolean overwrite) {
while ((line = bfr.readLine()) != null) {
if (line.contains("lang:") && LocaleUtils.isChinese(context) && overwrite && lang != null) {
str.append("lang:").append(lang).append("\n");
} else if (line.contains("forceUnicodeFont:")) {
str.append("forceUnicodeFont:false\n");
} else {
str.append(line).append("\n");
}
Expand Down

0 comments on commit db85428

Please sign in to comment.