(OGG): added fix checksums setting.

This commit is contained in:
morkt
2018-01-30 09:30:34 +04:00
parent 0a702c5c5d
commit ebbac01c40
10 changed files with 137 additions and 1 deletions

View File

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