mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 01:38:37 +12:00
- Implemented send open system menu cmd.
- Added cellSysutil module. - Improved OpenGL renderer. - Added cube & hello world homebrews. - Implemented more GCM syscalls.
This commit is contained in:
parent
2f5fa75bb4
commit
234e174b7d
28 changed files with 702 additions and 85 deletions
|
@ -23,7 +23,7 @@ int sys_ppu_thread_exit(int errorcode)
|
|||
|
||||
PPUThread& thr = GetCurrentPPUThread();
|
||||
thr.SetExitStatus(errorcode);
|
||||
wxGetApp().SendDbgCommand(DID_EXIT_THR_SYSCALL, &thr);
|
||||
Emu.GetCPU().RemoveThread(thr.GetId());
|
||||
|
||||
return CELL_OK;
|
||||
}
|
||||
|
@ -157,7 +157,6 @@ void sys_ppu_thread_once(u32 once_ctrl_addr, u32 entry)
|
|||
|
||||
PPCThread& new_thread = Emu.GetCPU().AddThread(PPC_THREAD_PPU);
|
||||
new_thread.SetEntry(entry);
|
||||
((PPUThread&)new_thread).LR = Emu.GetPPUThreadExit();
|
||||
new_thread.Run();
|
||||
new_thread.Exec();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue