diff options
Diffstat (limited to 'win/C#/Functions/PresetLoader.cs')
-rw-r--r-- | win/C#/Functions/PresetLoader.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/Functions/PresetLoader.cs b/win/C#/Functions/PresetLoader.cs index e2762af12..f10bd0073 100644 --- a/win/C#/Functions/PresetLoader.cs +++ b/win/C#/Functions/PresetLoader.cs @@ -232,7 +232,7 @@ namespace Handbrake.Functions break;
case "H.264 (x264)":
double cqStep = Properties.Settings.Default.x264cqstep;
- sliderValue = (int)((51.0 / cqStep) - (value/cqStep));
+ sliderValue = (int)((51.0 / cqStep) - (value / cqStep));
break;
case "VP3 (Theora)":
sliderValue = (int)value;
|