From 89a33c0ab3d523b9b5946ca706cd37f6fadd4985 Mon Sep 17 00:00:00 2001 From: lightningterror <18107717+lightningterror@users.noreply.github.com> Date: Mon, 4 Jan 2021 02:07:30 +0100 Subject: [PATCH] misc: A couple of more leftovers from SPU2 merge. --- pcsx2/System/SysCoreThread.cpp | 2 +- tests/run_test.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2/System/SysCoreThread.cpp b/pcsx2/System/SysCoreThread.cpp index 516a5db233..940a8a16f4 100644 --- a/pcsx2/System/SysCoreThread.cpp +++ b/pcsx2/System/SysCoreThread.cpp @@ -294,7 +294,7 @@ void SysCoreThread::DoCpuExecute() 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_mxcsr_saved.bitmask = _mm_getcsr(); diff --git a/tests/run_test.pl b/tests/run_test.pl index 49555b18da..524a8a72a1 100755 --- a/tests/run_test.pl +++ b/tests/run_test.pl @@ -367,7 +367,7 @@ sub generate_cfg { untie @vm; # 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) { s/Output_Module=.*/Output_Module=nullout/; }