mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 22:47:03 +00:00
Add some FXO init checks
This commit is contained in:
parent
98a0c76a08
commit
c6dadc537b
2 changed files with 18 additions and 4 deletions
|
|
@ -1049,8 +1049,15 @@ void debugger_frame::UpdateUnitList()
|
|||
|
||||
if (emu_state != system_state::stopped)
|
||||
{
|
||||
idm::select<named_thread<ppu_thread>>(on_select, idm::unlocked);
|
||||
idm::select<named_thread<spu_thread>>(on_select, idm::unlocked);
|
||||
if (g_fxo->is_init<id_manager::id_map<named_thread<ppu_thread>>>())
|
||||
{
|
||||
idm::select<named_thread<ppu_thread>>(on_select, idm::unlocked);
|
||||
}
|
||||
|
||||
if (g_fxo->is_init<id_manager::id_map<named_thread<spu_thread>>>())
|
||||
{
|
||||
idm::select<named_thread<spu_thread>>(on_select, idm::unlocked);
|
||||
}
|
||||
|
||||
if (const auto render = g_fxo->try_get<rsx::thread>(); render && render->ctrl)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue