summaryrefslogtreecommitdiffstats
path: root/src/common/thread.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2021-11-27 20:31:46 +0100
committerFernando Sahmkow <fsahmkow27@gmail.com>2022-06-28 01:10:55 +0200
commita2d29412cbda3e0dc57c49c5d4c098e8ba73cbb5 (patch)
treebebb8e6b2842cf6789a287507966362a01979694 /src/common/thread.h
parentCore: Reimplement Core Timing. (diff)
downloadyuzu-a2d29412cbda3e0dc57c49c5d4c098e8ba73cbb5.tar
yuzu-a2d29412cbda3e0dc57c49c5d4c098e8ba73cbb5.tar.gz
yuzu-a2d29412cbda3e0dc57c49c5d4c098e8ba73cbb5.tar.bz2
yuzu-a2d29412cbda3e0dc57c49c5d4c098e8ba73cbb5.tar.lz
yuzu-a2d29412cbda3e0dc57c49c5d4c098e8ba73cbb5.tar.xz
yuzu-a2d29412cbda3e0dc57c49c5d4c098e8ba73cbb5.tar.zst
yuzu-a2d29412cbda3e0dc57c49c5d4c098e8ba73cbb5.zip
Diffstat (limited to '')
-rw-r--r--src/common/thread.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/thread.h b/src/common/thread.h
index a63122516..1552f58e0 100644
--- a/src/common/thread.h
+++ b/src/common/thread.h
@@ -92,6 +92,7 @@ enum class ThreadPriority : u32 {
Normal = 1,
High = 2,
VeryHigh = 3,
+ Critical = 4,
};
void SetCurrentThreadPriority(ThreadPriority new_priority);