Fix indentation derp

This commit is contained in:
Alcaro 2016-08-17 13:53:29 +02:00
parent ff07d3569b
commit 4ce3683333
2 changed files with 10 additions and 10 deletions

View File

@ -137,7 +137,7 @@ char *path_remove_extension(char *path)
**/
bool path_contains_compressed_file(const char *path)
{
return (strchr(path,'#') != NULL);
return (strchr(path, '#') != NULL);
}
/**

View File

@ -327,15 +327,15 @@ 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))
{
RARCH_LOG("Saved shader preset to %s.\n", preset_path);
if (apply)
menu_shader_manager_set_preset(NULL, type, preset_path);
ret = true;
}
else
RARCH_LOG("Failed writing shader preset to %s.\n", preset_path);
if (config_file_write(conf, preset_path))
{
RARCH_LOG("Saved shader preset to %s.\n", preset_path);
if (apply)
menu_shader_manager_set_preset(NULL, type, preset_path);
ret = true;
}
else
RARCH_LOG("Failed writing shader preset to %s.\n", preset_path);
}
config_file_free(conf);