diff options
author | sr55 <[email protected]> | 2019-09-22 17:49:55 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2019-09-22 17:49:55 +0100 |
commit | b4342abace9eb44437f1a749107ae1f15ab2149a (patch) | |
tree | 7c65d81a9eef5585a27e3d6743952d4bbce849ab /win/CS | |
parent | 9552988c29ec0fff026528bb6501635783f5c22f (diff) |
WinGui: Fix a bug in the previous changelist
Diffstat (limited to 'win/CS')
-rw-r--r-- | win/CS/HandBrake.Interop/Interop/HbLib/Wrappers/HbFunctionsDirect.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrake.Interop/Interop/HbLib/Wrappers/HbFunctionsDirect.cs b/win/CS/HandBrake.Interop/Interop/HbLib/Wrappers/HbFunctionsDirect.cs index 3bb0530a0..b98794d5d 100644 --- a/win/CS/HandBrake.Interop/Interop/HbLib/Wrappers/HbFunctionsDirect.cs +++ b/win/CS/HandBrake.Interop/Interop/HbLib/Wrappers/HbFunctionsDirect.cs @@ -485,7 +485,7 @@ namespace HandBrake.Interop.Interop.HbLib.Wrappers [In] [MarshalAs(UnmanagedType.LPStr)] string tune, [In] [MarshalAs(UnmanagedType.LPStr)] string custom) { - return this.hb_generate_filter_settings_json(filter_id, preset, tune, custom); + return HBFunctions.hb_generate_filter_settings_json(filter_id, preset, tune, custom); } public IntPtr hb_filter_get_presets_json(int filter_id) |