mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 13:31:27 +12:00
sys_ppu_thread_create break fix (#1824)
This commit is contained in:
parent
7779742ac1
commit
4a08e8cd0b
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ s32 sys_ppu_thread_create(vm::ptr<u64> thread_id, u32 entry, u64 arg, s32 prio,
|
||||||
}
|
}
|
||||||
|
|
||||||
// Dirty hack for sound: confirm the creation of _mxr000 event queue
|
// Dirty hack for sound: confirm the creation of _mxr000 event queue
|
||||||
if (std::memcmp(threadname.get_ptr(), "_cellsurMixerMain", 18) == 0)
|
if (threadname && std::memcmp(threadname.get_ptr(), "_cellsurMixerMain", 18) == 0)
|
||||||
{
|
{
|
||||||
while (!idm::select<lv2_event_queue_t>([](u32, lv2_event_queue_t& eq)
|
while (!idm::select<lv2_event_queue_t>([](u32, lv2_event_queue_t& eq)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue