mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 11:18:36 +12:00
cellGcm HLE: fix cellGcmMapMainMemory
Fix arguments order, softcode RsxReports::report offset.
This commit is contained in:
parent
b7043ce000
commit
9d1bb60ad7
2 changed files with 10 additions and 8 deletions
|
@ -81,7 +81,7 @@ namespace rsx
|
|||
{
|
||||
if (offset < sizeof(RsxReports::report) /*&& (offset % 0x10) == 0*/)
|
||||
{
|
||||
return render->label_addr + 0x1400 + offset;
|
||||
return render->label_addr + ::offset32(&RsxReports::report) + offset;
|
||||
}
|
||||
|
||||
msg = "Local RSX REPORT offset out of range!"sv;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue