Removed JPEG interps option in GUI (made mostly obsolete by AutoEnc)

This commit is contained in:
N00MKRAD
2021-01-16 00:19:23 +01:00
parent 6e1f1c080c
commit b80da4a2a8
3 changed files with 1 additions and 57 deletions

View File

@@ -53,7 +53,7 @@ namespace Flowframes.Main
public static string GetOutExt (bool withDot = false)
{
string dotStr = withDot ? "." : "";
if (Config.GetBool("jpegInterps"))
if (Config.GetBool("jpegInterp"))
return dotStr + "jpg";
return dotStr + "png";
}