VideoCommon/AsyncRequests: Remove now unnecessary SetEnable function. Requests are now always enabled. Call SetPassthrough on initialization to not be racy.

This commit is contained in:
Jordan Woyak
2025-10-26 23:07:14 -05:00
parent 6416b0a6ec
commit 700abd68e3
4 changed files with 2 additions and 25 deletions
-2
View File
@@ -26,7 +26,6 @@ public:
PullEventsInternal();
}
void WaitForEmptyQueue();
void SetEnable(bool enable);
void SetPassthrough(bool enable);
template <typename F>
@@ -74,6 +73,5 @@ private:
std::mutex m_mutex;
std::condition_variable m_cond;
bool m_enable = false;
bool m_passthrough = true;
};