mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 16:01:42 +12:00
Implement standalone OVL (overlay) loading mode
* Allow to load OVL alone. * Add error checks in ppu_load_exec(), do not crash on error. * Fix crash on exit from standalone PRX mode, allow kernel explorer to work with it as well for the added OVL mode.
This commit is contained in:
parent
9077563dac
commit
82c86ed2f7
4 changed files with 113 additions and 27 deletions
|
@ -431,6 +431,11 @@ void cpu_thread::operator()()
|
|||
|
||||
while (!g_fxo->get<cpu_profiler>())
|
||||
{
|
||||
if (Emu.IsStopped())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
// Can we have a little race, right? First thread is started concurrently with g_fxo->init()
|
||||
std::this_thread::sleep_for(1ms);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue