mirror of
https://github.com/libretro/RetroArch
synced 2025-04-18 05:43:34 +00:00
Get rid of unnecessary log spam about non-required/non-essential files/directories
This commit is contained in:
parent
2cf6f6ce8f
commit
3cf7e881ec
@ -3914,9 +3914,6 @@ bool config_load_override(void *data)
|
|||||||
|
|
||||||
should_append = true;
|
should_append = true;
|
||||||
}
|
}
|
||||||
else
|
|
||||||
RARCH_LOG("[Overrides]: No core-specific overrides found at \"%s\".\n",
|
|
||||||
core_path);
|
|
||||||
|
|
||||||
if (has_content)
|
if (has_content)
|
||||||
{
|
{
|
||||||
@ -3945,9 +3942,6 @@ bool config_load_override(void *data)
|
|||||||
|
|
||||||
should_append = true;
|
should_append = true;
|
||||||
}
|
}
|
||||||
else
|
|
||||||
RARCH_LOG("[Overrides]: No content-dir-specific overrides found at \"%s\".\n",
|
|
||||||
content_path);
|
|
||||||
|
|
||||||
/* per-game overrides */
|
/* per-game overrides */
|
||||||
/* Create a new config file from game_path */
|
/* Create a new config file from game_path */
|
||||||
@ -3974,9 +3968,6 @@ bool config_load_override(void *data)
|
|||||||
|
|
||||||
should_append = true;
|
should_append = true;
|
||||||
}
|
}
|
||||||
else
|
|
||||||
RARCH_LOG("[Overrides]: No game-specific overrides found at \"%s\".\n",
|
|
||||||
game_path);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!should_append)
|
if (!should_append)
|
||||||
@ -4080,8 +4071,6 @@ bool config_load_remap(const char *directory_input_remapping,
|
|||||||
string_is_empty(directory_input_remapping))
|
string_is_empty(directory_input_remapping))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
RARCH_LOG("[Remaps]: Remap directory: \"%s\".\n", directory_input_remapping);
|
|
||||||
|
|
||||||
/* Concatenate strings into full paths for core_path,
|
/* Concatenate strings into full paths for core_path,
|
||||||
* game_path, content_path */
|
* game_path, content_path */
|
||||||
if (has_content)
|
if (has_content)
|
||||||
|
@ -760,7 +760,6 @@ bool patch_content(
|
|||||||
bool allow_ups = !is_bps_pref && !is_ips_pref;
|
bool allow_ups = !is_bps_pref && !is_ips_pref;
|
||||||
bool allow_ips = !is_ups_pref && !is_bps_pref;
|
bool allow_ips = !is_ups_pref && !is_bps_pref;
|
||||||
bool allow_bps = !is_ups_pref && !is_ips_pref;
|
bool allow_bps = !is_ups_pref && !is_ips_pref;
|
||||||
bool patch_found = false;
|
|
||||||
|
|
||||||
if ( (unsigned)is_ips_pref
|
if ( (unsigned)is_ips_pref
|
||||||
+ (unsigned)is_bps_pref
|
+ (unsigned)is_bps_pref
|
||||||
@ -833,12 +832,8 @@ bool patch_content(
|
|||||||
free(name_bps_indexed);
|
free(name_bps_indexed);
|
||||||
free(name_ups_indexed);
|
free(name_ups_indexed);
|
||||||
|
|
||||||
patch_found = true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!patch_found)
|
return false;
|
||||||
RARCH_LOG("[Content]: %s\n",
|
|
||||||
msg_hash_to_str(MSG_DID_NOT_FIND_A_VALID_CONTENT_PATCH));
|
|
||||||
|
|
||||||
return patch_found;
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user