When there is no "tune" and extra ':' was added to the end of the string
and caused a failure to validate the filter settings.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7101
b64f7644-9d1e-0410-96f1-
a4d463321fa5
}
else if (preset_entry->settings != NULL)
{
- opt = hb_strdup_printf("%s:%s", preset_entry->settings,
+ opt = hb_strdup_printf("%s%s%s", preset_entry->settings,
+ tune_entry != NULL ? ":" : "",
tune_entry != NULL ? tune_entry->settings : "");
}
}