mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 19:44:57 +00:00
Fix DSP LLE thread affinity being set to the wrong core
Patch from konpie: http://forums.dolphin-emulator.com/showthread.php?tid=24658
This commit is contained in:
parent
e42c6214d9
commit
d44a3471be
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ void DSPLLE::dsp_thread(DSPLLE *dsp_lle)
|
|||
else
|
||||
core_id = 3; // 3rd core
|
||||
|
||||
Common::SetCurrentThreadAffinity(1 << core_id);
|
||||
Common::SetCurrentThreadAffinity(1 << (core_id - 1));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue