mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-03-12 22:14:58 +00:00
Make sceNpDrmProcessExitSpawn(2) execute sys_game calls correctly
This commit is contained in:
parent
19e20d9c19
commit
2aff36647a
@ -595,7 +595,7 @@ error_code sceNpDrmProcessExitSpawn(ppu_thread& ppu, vm::cptr<u8> klicensee, vm:
|
|||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
sys_game_process_exitspawn(ppu, path, argv, envp, data, data_size, prio, flags);
|
ppu_execute<&sys_game_process_exitspawn>(ppu, path, argv, envp, data, data_size, prio, flags);
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -608,7 +608,7 @@ error_code sceNpDrmProcessExitSpawn2(ppu_thread& ppu, vm::cptr<u8> klicensee, vm
|
|||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
sys_game_process_exitspawn2(ppu, path, argv, envp, data, data_size, prio, flags);
|
ppu_execute<&sys_game_process_exitspawn2>(ppu, path, argv, envp, data, data_size, prio, flags);
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user