From a25ea03a28de507b41539f84e6474e68590c7fcb Mon Sep 17 00:00:00 2001 From: Gliniak Date: Wed, 21 Dec 2022 20:12:34 +0100 Subject: [PATCH] [Threading] Revert sleepdelay0_for_maybeyield back to 0 --- src/xenia/base/threading_win.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/base/threading_win.cc b/src/xenia/base/threading_win.cc index 88ecb145c..c5b0cf0ad 100644 --- a/src/xenia/base/threading_win.cc +++ b/src/xenia/base/threading_win.cc @@ -123,7 +123,7 @@ void set_name(const std::string_view name) { // checked ntoskrnl, it does not modify delay, so we can place this as a // constant and avoid creating a stack variable -static const LARGE_INTEGER sleepdelay0_for_maybeyield{{~0u, -1}}; +static const LARGE_INTEGER sleepdelay0_for_maybeyield{{0LL}}; void MaybeYield() { #if 0