don't alphabetize shader presets
It makes it harder to edit them later.
This commit is contained in:
parent
74526ca140
commit
255dc9d932
|
@ -343,7 +343,7 @@ bool menu_shader_manager_save_preset(
|
||||||
if (!string_is_empty(basename))
|
if (!string_is_empty(basename))
|
||||||
strlcpy(preset_path, buffer, sizeof(preset_path));
|
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);
|
RARCH_LOG("Saved shader preset to %s.\n", preset_path);
|
||||||
if (apply)
|
if (apply)
|
||||||
|
@ -363,7 +363,7 @@ bool menu_shader_manager_save_preset(
|
||||||
fill_pathname_join(preset_path, dirs[d],
|
fill_pathname_join(preset_path, dirs[d],
|
||||||
buffer, sizeof(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);
|
RARCH_LOG("Saved shader preset to %s.\n", preset_path);
|
||||||
if (apply)
|
if (apply)
|
||||||
|
|
Loading…
Reference in New Issue