Merge pull request #8538 from hizzlekizzle/master

don't alphabetize shader presets
This commit is contained in:
Twinaphex 2019-04-03 00:11:20 +02:00 committed by GitHub
commit 03381da506
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -343,7 +343,7 @@ bool menu_shader_manager_save_preset(
if (!string_is_empty(basename))
strlcpy(preset_path, buffer, sizeof(preset_path));
if (config_file_write(conf, preset_path, true))
if (config_file_write(conf, preset_path, false))
{
RARCH_LOG("Saved shader preset to %s.\n", preset_path);
if (apply)
@ -363,7 +363,7 @@ bool menu_shader_manager_save_preset(
fill_pathname_join(preset_path, dirs[d],
buffer, sizeof(preset_path));
if (config_file_write(conf, preset_path, true))
if (config_file_write(conf, preset_path, false))
{
RARCH_LOG("Saved shader preset to %s.\n", preset_path);
if (apply)