Common/Mutex: Fix compiling without wxUSE_GUI

This commit is contained in:
Connor McLaughlin 2021-10-01 15:59:33 +10:00 committed by refractionpcsx2
parent 42d730c80f
commit 9abaa1adf6
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ bool Threading::Mutex::Acquire(const wxTimeSpan& timeout)
}
#else
return AcquireWithoutYield();
return AcquireWithoutYield(timeout);
#endif
}