(PFS): added option to select filenames encoding (#162)

This commit is contained in:
morkt
2018-03-11 21:12:58 +04:00
parent eafe023de9
commit 8016560d04
11 changed files with 52 additions and 3 deletions

View File

@@ -741,5 +741,17 @@ namespace GameRes.Formats.Properties {
this["OGGFixCrc"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("65001")]
public int PFSEncodingCP {
get {
return ((int)(this["PFSEncodingCP"]));
}
set {
this["PFSEncodingCP"] = value;
}
}
}
}

View File

@@ -182,5 +182,8 @@
<Setting Name="OGGFixCrc" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="PFSEncodingCP" Type="System.Int32" Scope="User">
<Value Profile="(Default)">65001</Value>
</Setting>
</Settings>
</SettingsFile>