From 66a1e9ca38fc063b46f4aa63bf7132c7100ccd23 Mon Sep 17 00:00:00 2001 From: JPikachu Date: Sat, 1 Nov 2025 23:11:09 +0000 Subject: [PATCH] fix build --- src/core/hle/kernel/svc/svc_condition_variable.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/hle/kernel/svc/svc_condition_variable.cpp b/src/core/hle/kernel/svc/svc_condition_variable.cpp index e1c9e36f2c..5021b8078d 100644 --- a/src/core/hle/kernel/svc/svc_condition_variable.cpp +++ b/src/core/hle/kernel/svc/svc_condition_variable.cpp @@ -27,7 +27,6 @@ Result WaitProcessWideKeyAtomic(Core::System& system, u64 address, u64 cv_key, u // Convert timeout from nanoseconds to ticks. s64 timeout{}; if (timeout_ns > 0) { - const s64 offset_tick(timeout_ns); timeout = (std::numeric_limits::max)(); } else { timeout = timeout_ns;