patch_content - fix conditional
This commit is contained in:
parent
400b01d131
commit
4fe4a6cbb3
|
@ -159,7 +159,7 @@ static void patch_content(uint8_t **buf, ssize_t *size)
|
||||||
return;
|
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");
|
RARCH_LOG("Did not find a valid content patch.\n");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue