From 62c14e94370a4169243cc48b64874b24a381f35d Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Thu, 31 Aug 2017 21:44:26 +0300 Subject: [PATCH] Fix sys_raw_spu_load --- rpcs3/Emu/Cell/Modules/sys_spu_.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/Modules/sys_spu_.cpp b/rpcs3/Emu/Cell/Modules/sys_spu_.cpp index cbe86575ee..daa952b59e 100644 --- a/rpcs3/Emu/Cell/Modules/sys_spu_.cpp +++ b/rpcs3/Emu/Cell/Modules/sys_spu_.cpp @@ -396,7 +396,7 @@ s32 sys_raw_spu_load(s32 id, vm::cptr path, vm::ptr 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; }