mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-11 09:18:40 +12:00
Small fix 2
This commit is contained in:
parent
0df3e955c8
commit
860d7bd3f1
11 changed files with 44 additions and 34 deletions
|
@ -332,10 +332,12 @@ int cellSurMixerCreate(vm::ptr<const CellSurMixerConfig> config)
|
|||
|
||||
PPUThread& cb_thread = *(PPUThread*)&Emu.GetCPU().AddThread(CPU_THREAD_PPU);
|
||||
cb_thread.SetName("Surmixer Callback Thread");
|
||||
cb_thread.SetEntry(0x10000);
|
||||
cb_thread.SetEntry(0);
|
||||
cb_thread.SetPrio(1001);
|
||||
cb_thread.SetStackSize(0x10000);
|
||||
cb_thread.Run();
|
||||
cb_thread.InitStack();
|
||||
cb_thread.InitRegs();
|
||||
cb_thread.DoRun();
|
||||
|
||||
while (port.m_is_audio_port_opened)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue