From 85695692a710e7c53cebd9343a968467aa8674a9 Mon Sep 17 00:00:00 2001 From: Gliniak Date: Fri, 17 Jan 2025 19:51:18 +0100 Subject: [PATCH] [Base] Fixed issues with thread priority introduced in previous commit --- src/xenia/base/threading.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/base/threading.h b/src/xenia/base/threading.h index 26e5267bf..c0ac71647 100644 --- a/src/xenia/base/threading.h +++ b/src/xenia/base/threading.h @@ -402,7 +402,7 @@ class Timer : public WaitHandle { virtual bool Cancel() = 0; }; -#if XE_PLATFORM_WINDOWS +#if XE_PLATFORM_WIN32 struct ThreadPriority { static const int32_t kLowest = -2; static const int32_t kBelowNormal = -1;