Another attempted fix

This commit is contained in:
inspuration 2014-06-11 00:49:39 -04:00
parent 5becefcfd4
commit 537c04ac14

View file

@ -39,7 +39,7 @@ public:
*wait = locked;
if (locked) {
Handle thread = GetCurrentThreadHandle();
if (std::find(waiting_threads.begin(), waiting_threads.end(), thread) == waiting_threads.end()) {
if (find(waiting_threads.begin(), waiting_threads.end(), thread) == waiting_threads.end()) {
waiting_threads.push_back(thread);
}
Kernel::WaitCurrentThread(WAITTYPE_EVENT);