summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorGravatar Subv2018-04-20 17:41:11 -0500
committerGravatar Subv2018-04-20 21:04:35 -0500
commita70ed9c8ae034a1035d1b099161ad740840c5a94 (patch)
tree4dfc0ddeec153ce97041a3756169bf70de698153 /src/core/hle/kernel/thread.h
parentQt: Update the WaitTree widget to show info about the current mutex of each t... (diff)
downloadyuzu-a70ed9c8ae034a1035d1b099161ad740840c5a94.tar.gz
yuzu-a70ed9c8ae034a1035d1b099161ad740840c5a94.tar.xz
yuzu-a70ed9c8ae034a1035d1b099161ad740840c5a94.zip
Kernel: Use 0x2C as default main thread priority for homebrew and lone NRO/NSOs
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r--src/core/hle/kernel/thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index ee13d20f1..0e0eae28d 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -18,7 +18,7 @@
18enum ThreadPriority : u32 { 18enum ThreadPriority : u32 {
19 THREADPRIO_HIGHEST = 0, ///< Highest thread priority 19 THREADPRIO_HIGHEST = 0, ///< Highest thread priority
20 THREADPRIO_USERLAND_MAX = 24, ///< Highest thread priority for userland apps 20 THREADPRIO_USERLAND_MAX = 24, ///< Highest thread priority for userland apps
21 THREADPRIO_DEFAULT = 48, ///< Default thread priority for userland apps 21 THREADPRIO_DEFAULT = 44, ///< Default thread priority for userland apps
22 THREADPRIO_LOWEST = 63, ///< Lowest thread priority 22 THREADPRIO_LOWEST = 63, ///< Lowest thread priority
23}; 23};
24 24