patch_content - fix conditional

This commit is contained in:
twinaphex 2015-02-16 02:32:56 +01:00
parent 400b01d131
commit 4fe4a6cbb3

View File

@ -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");
}