(GameRes): added JPEG compression quality setting.

This commit is contained in:
morkt
2018-04-13 19:46:17 +04:00
parent 3bea44ff30
commit 12bff91ba2
11 changed files with 83 additions and 7 deletions

View File

@@ -46,5 +46,17 @@ namespace GameRes.Properties {
this["UpgradeRequired"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("100")]
public int JPEGQuality {
get {
return ((int)(this["JPEGQuality"]));
}
set {
this["JPEGQuality"] = value;
}
}
}
}