diff options
Diffstat (limited to 'win/CS/HandBrakeWPF/App.xaml.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/App.xaml.cs | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/win/CS/HandBrakeWPF/App.xaml.cs b/win/CS/HandBrakeWPF/App.xaml.cs index ce13693ab..e0bfd1bbf 100644 --- a/win/CS/HandBrakeWPF/App.xaml.cs +++ b/win/CS/HandBrakeWPF/App.xaml.cs @@ -53,12 +53,6 @@ namespace HandBrakeWPF return;
}
- if (e.Args.Any(f => f.Equals("--instant")))
- {
- AppArguments.IsInstantHandBrake = true;
- MessageBox.Show("Instant HandBrake is just a prototype for toying with ideas. It may or may not work, or even be included in future builds.", "Warning", MessageBoxButton.OK, MessageBoxImage.Warning);
- }
-
if (e.Args.Any(f => f.Equals("--reset")))
{
HandBrakeApp.ResetToDefaults();
@@ -66,11 +60,6 @@ namespace HandBrakeWPF return;
}
- if (e.Args.Any(f => f.Equals("--enable-libhb")))
- {
- AppArguments.UseLibHb = true;
- }
-
base.OnStartup(e);
// If we have a file dropped on the icon, try scanning it.
|