From 8d32843d68907de5cdbe438eb917faf25259f123 Mon Sep 17 00:00:00 2001 From: Weiyi Wang Date: Tue, 23 Oct 2018 10:06:32 -0400 Subject: [PATCH] thread/kernel: remove unused callback_id we use the thread id for the same purpose now --- src/core/hle/kernel/thread.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index 220e6aa17..69680acf8 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp @@ -38,7 +38,6 @@ void Thread::Acquire(Thread* thread) { ASSERT_MSG(!ShouldWait(thread), "object unavailable!"); } -static u64 next_callback_id; static std::unordered_map wakeup_callback_table; // Lists all thread ids that aren't deleted/etc.