diff --git a/Source/Core/Common/WorkQueueThread.h b/Source/Core/Common/WorkQueueThread.h index 88e5516d26..6039f7b3b9 100644 --- a/Source/Core/Common/WorkQueueThread.h +++ b/Source/Core/Common/WorkQueueThread.h @@ -60,7 +60,6 @@ public: bool IsCancelled() const { return m_cancelled.IsSet(); } -private: void Shutdown() { if (m_thread.joinable()) @@ -71,6 +70,7 @@ private: } } +private: void ThreadLoop() { Common::SetCurrentThreadName("WorkQueueThread");