IOPBios: Defer to iopMemSafeWriteBytes when HLEing reads

This commit is contained in:
Ty Lamontagne 2024-12-12 14:38:06 -05:00 committed by Ty
parent 17274eb397
commit f964dfaa5e
1 changed files with 10 additions and 2 deletions

View File

@ -852,8 +852,16 @@ namespace R3000A
v0 = file->read(buf.get(), count);
for (s32 i = 0; i < (s32)v0; i++)
iopMemWrite8(data + i, buf[i]);
[[likely]]
if (v0 >= 0 && iopMemSafeWriteBytes(data, buf.get(), v0))
{
psxCpu->Clear(data, (v0 + 3) / 4);
}
else
{
for (s32 i = 0; i < static_cast<s32>(v0); i++)
iopMemWrite8(data + i, buf[i]);
}
pc = ra;
return 1;