mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 04:20:28 +00:00
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;
|
||||
}
|
||||
|
||||
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");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user