diff options
| author | 2021-11-27 20:31:46 +0100 | |
|---|---|---|
| committer | 2022-06-28 01:10:55 +0200 | |
| commit | a2d29412cbda3e0dc57c49c5d4c098e8ba73cbb5 (patch) | |
| tree | bebb8e6b2842cf6789a287507966362a01979694 /src/common/thread.h | |
| parent | Core: Reimplement Core Timing. (diff) | |
| download | yuzu-a2d29412cbda3e0dc57c49c5d4c098e8ba73cbb5.tar.gz yuzu-a2d29412cbda3e0dc57c49c5d4c098e8ba73cbb5.tar.xz yuzu-a2d29412cbda3e0dc57c49c5d4c098e8ba73cbb5.zip | |
Core/Common: Corrections to core timing and add critical priority.
Diffstat (limited to 'src/common/thread.h')
| -rw-r--r-- | src/common/thread.h | 1 |
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 { | |||
| 92 | Normal = 1, | 92 | Normal = 1, |
| 93 | High = 2, | 93 | High = 2, |
| 94 | VeryHigh = 3, | 94 | VeryHigh = 3, |
| 95 | Critical = 4, | ||
| 95 | }; | 96 | }; |
| 96 | 97 | ||
| 97 | void SetCurrentThreadPriority(ThreadPriority new_priority); | 98 | void SetCurrentThreadPriority(ThreadPriority new_priority); |