diff --git a/configuration.c b/configuration.c index 0d50897886..84ae493e0e 100644 --- a/configuration.c +++ b/configuration.c @@ -3914,9 +3914,6 @@ bool config_load_override(void *data) should_append = true; } - else - RARCH_LOG("[Overrides]: No core-specific overrides found at \"%s\".\n", - core_path); if (has_content) { @@ -3945,9 +3942,6 @@ bool config_load_override(void *data) should_append = true; } - else - RARCH_LOG("[Overrides]: No content-dir-specific overrides found at \"%s\".\n", - content_path); /* per-game overrides */ /* Create a new config file from game_path */ @@ -3974,9 +3968,6 @@ bool config_load_override(void *data) should_append = true; } - else - RARCH_LOG("[Overrides]: No game-specific overrides found at \"%s\".\n", - game_path); } if (!should_append) @@ -4080,8 +4071,6 @@ bool config_load_remap(const char *directory_input_remapping, string_is_empty(directory_input_remapping)) return false; - RARCH_LOG("[Remaps]: Remap directory: \"%s\".\n", directory_input_remapping); - /* Concatenate strings into full paths for core_path, * game_path, content_path */ if (has_content) diff --git a/tasks/task_patch.c b/tasks/task_patch.c index 42d1d28fb4..334e3f13d7 100644 --- a/tasks/task_patch.c +++ b/tasks/task_patch.c @@ -760,7 +760,6 @@ bool patch_content( bool allow_ups = !is_bps_pref && !is_ips_pref; bool allow_ips = !is_ups_pref && !is_bps_pref; bool allow_bps = !is_ups_pref && !is_ips_pref; - bool patch_found = false; if ( (unsigned)is_ips_pref + (unsigned)is_bps_pref @@ -833,12 +832,8 @@ bool patch_content( free(name_bps_indexed); free(name_ups_indexed); - patch_found = true; + return true; } - if(!patch_found) - RARCH_LOG("[Content]: %s\n", - msg_hash_to_str(MSG_DID_NOT_FIND_A_VALID_CONTENT_PATCH)); - - return patch_found; + return false; }