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.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp
index 3c6669ca2..9ad53b8cf 100644
--- a/src/core/hle/kernel/thread.cpp
+++ b/src/core/hle/kernel/thread.cpp
@@ -40,8 +40,8 @@ static Thread* current_thread;
40static const u32 INITIAL_THREAD_ID = 1; ///< The first available thread id at startup 40static const u32 INITIAL_THREAD_ID = 1; ///< The first available thread id at startup
41static u32 next_thread_id; ///< The next available thread id 41static u32 next_thread_id; ///< The next available thread id
42 42
43Thread::Thread() { 43Thread::Thread() {}
44} 44Thread::~Thread() {}
45 45
46Thread* GetCurrentThread() { 46Thread* GetCurrentThread() {
47 return current_thread; 47 return current_thread;