summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
-rw-r--r--src/core/hle/kernel/thread.cpp2
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:
75static std::vector<Handle> thread_queue; 75static std::vector<Handle> thread_queue;
76 76
77// Lists only ready thread ids. 77// Lists only ready thread ids.
78static Common::ThreadQueueList<Handle> thread_ready_queue; 78static Common::ThreadQueueList<Handle, THREADPRIO_LOWEST+1> thread_ready_queue;
79 79
80static Handle current_thread_handle; 80static Handle current_thread_handle;
81static Thread* current_thread; 81static Thread* current_thread;