[DatFiles/] Don't use UTF8-BOM, just UTF8

This commit is contained in:
Matt Nadareski
2017-11-07 10:24:08 -08:00
parent 1ea317be8f
commit c464b0c2ac
12 changed files with 12 additions and 12 deletions

View File

@@ -131,7 +131,7 @@ namespace SabreTools.Library.DatFiles
return false;
}
StreamWriter sw = new StreamWriter(fs, new UTF8Encoding(true));
StreamWriter sw = new StreamWriter(fs, new UTF8Encoding(false));
// Get a properly sorted set of keys
List<string> keys = Keys;