mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 03:55:32 +00:00
Fix sys_raw_spu_load
This commit is contained in:
parent
90b8346312
commit
62c14e9437
1 changed files with 1 additions and 1 deletions
|
@ -396,7 +396,7 @@ s32 sys_raw_spu_load(s32 id, vm::cptr<char> path, vm::ptr<u32> entry)
|
|||
img.deploy(RAW_SPU_BASE_ADDR + RAW_SPU_OFFSET * id, img.segs.get_ptr(), img.nsegs);
|
||||
img.free();
|
||||
|
||||
*entry = img.entry_point | 1;
|
||||
*entry = img.entry_point;
|
||||
|
||||
return CELL_OK;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue