Core/Common: Corrections to core timing and add critical priority.

This commit is contained in:
Fernando Sahmkow 2021-11-27 20:31:46 +01:00
parent 846c994cc9
commit a2d29412cb
3 changed files with 11 additions and 5 deletions

View file

@ -92,6 +92,7 @@ enum class ThreadPriority : u32 {
Normal = 1,
High = 2,
VeryHigh = 3,
Critical = 4,
};
void SetCurrentThreadPriority(ThreadPriority new_priority);