From e08f55b1a7a6136377d3de1dc8f7f9664f5524d6 Mon Sep 17 00:00:00 2001 From: bunnei Date: Mon, 23 Mar 2015 00:50:06 -0400 Subject: Kernel: Fixed default thread priority. --- src/core/hle/kernel/thread.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/core/hle/kernel/thread.h') diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index cfd073a7..bde4eecf 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h @@ -18,10 +18,9 @@ #include "core/hle/result.h" enum ThreadPriority { - THREADPRIO_HIGHEST = 0, ///< Highest thread priority - THREADPRIO_DEFAULT = 16, ///< Default thread priority for userland apps - THREADPRIO_LOW = 31, ///< Low range of thread priority for userland apps - THREADPRIO_LOWEST = 63, ///< Thread priority max checked by svcCreateThread + THREADPRIO_HIGHEST = 0x0, ///< Highest thread priority + THREADPRIO_DEFAULT = 0x30, ///< Default thread priority for userland apps + THREADPRIO_LOWEST = 0x3F, ///< Lowest thread priority }; enum ThreadProcessorId { -- cgit v1.2.3