diff options
author | Subv <subv2112@gmail.com> | 2018-04-21 00:41:11 +0200 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2018-04-21 04:04:35 +0200 |
commit | a70ed9c8ae034a1035d1b099161ad740840c5a94 (patch) | |
tree | 4dfc0ddeec153ce97041a3756169bf70de698153 /src/core/hle | |
parent | Qt: Update the WaitTree widget to show info about the current mutex of each thread. (diff) | |
download | yuzu-a70ed9c8ae034a1035d1b099161ad740840c5a94.tar yuzu-a70ed9c8ae034a1035d1b099161ad740840c5a94.tar.gz yuzu-a70ed9c8ae034a1035d1b099161ad740840c5a94.tar.bz2 yuzu-a70ed9c8ae034a1035d1b099161ad740840c5a94.tar.lz yuzu-a70ed9c8ae034a1035d1b099161ad740840c5a94.tar.xz yuzu-a70ed9c8ae034a1035d1b099161ad740840c5a94.tar.zst yuzu-a70ed9c8ae034a1035d1b099161ad740840c5a94.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/kernel/thread.h | 2 |
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 @@ enum ThreadPriority : u32 { THREADPRIO_HIGHEST = 0, ///< Highest thread priority THREADPRIO_USERLAND_MAX = 24, ///< Highest thread priority for userland apps - THREADPRIO_DEFAULT = 48, ///< Default thread priority for userland apps + THREADPRIO_DEFAULT = 44, ///< Default thread priority for userland apps THREADPRIO_LOWEST = 63, ///< Lowest thread priority }; |