diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-01-05 08:48:36 +0100 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-01-07 21:38:25 +0100 |
commit | 122c2bb3244c6d1d6bc37b27a7843ec680b228e6 (patch) | |
tree | db06279f637317e67423f7d028bbda47457f3868 /src/core | |
parent | Merge pull request #438 from lioncash/swp (diff) | |
download | yuzu-122c2bb3244c6d1d6bc37b27a7843ec680b228e6.tar yuzu-122c2bb3244c6d1d6bc37b27a7843ec680b228e6.tar.gz yuzu-122c2bb3244c6d1d6bc37b27a7843ec680b228e6.tar.bz2 yuzu-122c2bb3244c6d1d6bc37b27a7843ec680b228e6.tar.lz yuzu-122c2bb3244c6d1d6bc37b27a7843ec680b228e6.tar.xz yuzu-122c2bb3244c6d1d6bc37b27a7843ec680b228e6.tar.zst yuzu-122c2bb3244c6d1d6bc37b27a7843ec680b228e6.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/hle/kernel/thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index 872df2d14..d76451146 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp @@ -75,7 +75,7 @@ public: static std::vector<Handle> thread_queue; // Lists only ready thread ids. -static Common::ThreadQueueList<Handle> thread_ready_queue; +static Common::ThreadQueueList<Handle, THREADPRIO_LOWEST+1> thread_ready_queue; static Handle current_thread_handle; static Thread* current_thread; |