From 4fe4a6cbb3348a90230091658fae9c10d1ac7027 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 16 Feb 2015 02:32:56 +0100 Subject: [PATCH] patch_content - fix conditional --- content.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content.c b/content.c index 431eb73a15..53b8b5984f 100644 --- a/content.c +++ b/content.c @@ -159,7 +159,7 @@ static void patch_content(uint8_t **buf, ssize_t *size) return; } - if (!try_ups_patch(buf, size) || !try_bps_patch(buf, size) || !try_ips_patch(buf, size)) + if (!try_ups_patch(buf, size) && !try_bps_patch(buf, size) && !try_ips_patch(buf, size)) { RARCH_LOG("Did not find a valid content patch.\n"); }