aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/sched.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/tony/sched.cpp')
-rw-r--r--engines/tony/sched.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tony/sched.cpp b/engines/tony/sched.cpp
index 421f4d1ac7..f8a7fd2538 100644
--- a/engines/tony/sched.cpp
+++ b/engines/tony/sched.cpp
@@ -314,7 +314,7 @@ void Scheduler::waitForSingleObject(CORO_PARAM, int pid, int duration, bool *exp
while (g_system->getMillis() < _ctx->endTime) {
// Check to see if a process with the given Id exists
_ctx->pProc = active->pNext;
- while ((_ctx->pProc != NULL) && (_ctx->pProc->pid == pid))
+ while ((_ctx->pProc != NULL) && (_ctx->pProc->pid != pid))
_ctx->pProc = _ctx->pProc->pNext;
if (_ctx->pProc == NULL) {