mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-16 23:17:29 +00:00
sys_ppu_thread_create break fix (#1824)
This commit is contained in:
parent
7779742ac1
commit
4a08e8cd0b
@ -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…
Reference in New Issue
Block a user