From 9abaa1adf684645d4b0a4cbcfc9959031d0cc087 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Fri, 1 Oct 2021 15:59:33 +1000 Subject: [PATCH] Common/Mutex: Fix compiling without wxUSE_GUI --- common/Mutex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/Mutex.cpp b/common/Mutex.cpp index 25925b90b0..6f0ef5fa43 100644 --- a/common/Mutex.cpp +++ b/common/Mutex.cpp @@ -248,7 +248,7 @@ bool Threading::Mutex::Acquire(const wxTimeSpan& timeout) } #else - return AcquireWithoutYield(); + return AcquireWithoutYield(timeout); #endif }