From 20662ad77d329265c12e3b1bea4da1a801f42ced Mon Sep 17 00:00:00 2001 From: Alcaro Date: Mon, 1 Jun 2015 19:39:27 +0200 Subject: [PATCH] Things that happen 98% of the time shouldn't be warnings. --- patch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patch.c b/patch.c index 5e4da6f83c..8b72a94a9a 100644 --- a/patch.c +++ b/patch.c @@ -572,6 +572,6 @@ void patch_content(uint8_t **buf, ssize_t *size) if (!try_ips_patch(buf, size) && !try_bps_patch(buf, size) && !try_ups_patch(buf, size)) { - RARCH_WARN("Did not find a valid content patch.\n"); + RARCH_LOG("Did not find a valid content patch.\n"); } }