misc: A couple of more leftovers from SPU2 merge.

This commit is contained in:
lightningterror 2021-01-04 02:07:30 +01:00
parent a8aeeb5a6a
commit 89a33c0ab3
2 changed files with 2 additions and 2 deletions

View File

@ -294,7 +294,7 @@ void SysCoreThread::DoCpuExecute()
void SysCoreThread::ExecuteTaskInThread() void SysCoreThread::ExecuteTaskInThread()
{ {
Threading::EnableHiresScheduler(); // Note that *something* in SPU2-X and GSdx also set the timer resolution to 1ms. Threading::EnableHiresScheduler(); // Note that *something* in SPU2 and GSdx also set the timer resolution to 1ms.
m_sem_event.WaitWithoutYield(); m_sem_event.WaitWithoutYield();
m_mxcsr_saved.bitmask = _mm_getcsr(); m_mxcsr_saved.bitmask = _mm_getcsr();

View File

@ -367,7 +367,7 @@ sub generate_cfg {
untie @vm; untie @vm;
# Disable sound emulation (avoid spurious "ALSA lib pcm.c:7843:(snd_pcm_recover) underrun occurred") # Disable sound emulation (avoid spurious "ALSA lib pcm.c:7843:(snd_pcm_recover) underrun occurred")
tie my @spu, 'Tie::File', File::Spec->catfile($out_dir, "spu2-x.ini") or die "Fail to tie $!\n"; tie my @spu, 'Tie::File', File::Spec->catfile($out_dir, "SPU2.ini") or die "Fail to tie $!\n";
for (@spu) { for (@spu) {
s/Output_Module=.*/Output_Module=nullout/; s/Output_Module=.*/Output_Module=nullout/;
} }