summaryrefslogtreecommitdiffstats
path: root/libhb/preset.c
diff options
context:
space:
mode:
authorScott <[email protected]>2015-10-24 21:23:33 +0100
committerScott <[email protected]>2015-10-24 21:23:33 +0100
commitcf1ebbc2087abe9ac9ac14c2284397db754b597c (patch)
tree74de87d106c67d263e0a27b7216770e8e970629a /libhb/preset.c
parenta5e11c672683a315646ba78e74d6c4beb719bfd1 (diff)
Update HandBrakeCLI to read presets.json on Windows. This is the file that windows gui stores all presets in now.
This should allow the CLI to read GUI presets now.
Diffstat (limited to 'libhb/preset.c')
-rw-r--r--libhb/preset.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/preset.c b/libhb/preset.c
index 2b072f188..c4907fcbd 100644
--- a/libhb/preset.c
+++ b/libhb/preset.c
@@ -16,8 +16,8 @@
#define HB_PRESET_PLIST_FILE "ghb/presets"
#define HB_PRESET_JSON_FILE "ghb/presets.json"
#elif defined(SYS_MINGW)
-#define HB_PRESET_PLIST_FILE "HandBrake\\user_presets.xml"
-#define HB_PRESET_JSON_FILE "HandBrake\\user_presets.json"
+#define HB_PRESET_PLIST_FILE "HandBrake\\presets.xml"
+#define HB_PRESET_JSON_FILE "HandBrake\\presets.json"
#elif defined(SYS_DARWIN)
#define HB_PRESET_PLIST_FILE "HandBrake/UserPresets.plist"
#define HB_PRESET_JSON_FILE "HandBrake/UserPresets.json"