Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
EX3exp authored Sep 2, 2024
1 parent 5e56bf0 commit 6673c0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenUtau.Core/KoreanPhonemizerUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1183,7 +1183,7 @@ public void Initialize(USinger singer, string iniFileName, Hashtable defaultIniS
}
catch (IOException e) {
Log.Error(e, $"failed to read {iniFileName}, Making new {iniFileName}...");
using (StreamWriter writer = new StreamWriter(filePath, Encoding.UTF8)){
using (StreamWriter writer = new StreamWriter(filePath, false, Encoding.UTF8)){
iniSetting = defaultIniSetting;
try{
writer.Write(ConvertSettingsToString());
Expand Down

0 comments on commit 6673c0e

Please sign in to comment.