diff options
author | Pixel <pixel@nobis-crew.org> | 2012-04-08 16:58:36 -0700 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2012-04-08 16:58:36 -0700 |
commit | ca8545b1639f0f33f99b2ce3969874ccc7a79d62 (patch) | |
tree | 75d61e8e1247502b387250ac1ff06271c5270e1e | |
parent | 1548da7eb85e8199e49c0a4e7e3c53fb2184177e (diff) |
Broken assert.
-rw-r--r-- | includes/Task.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/Task.h b/includes/Task.h index e9c2add..159e68d 100644 --- a/includes/Task.h +++ b/includes/Task.h @@ -167,7 +167,7 @@ class Task { return oldValue; } void setStackless() { - AAssert(m_stackless, "Can't set a task to be stackless twice"); + AAssert(!m_stackless, "Can't set a task to be stackless twice"); AAssert(m_status == STARTING, "Can't set a task to be stackless after it started. status = %s", StatusToString(m_status)); m_stackless = true; m_okayToEAgain = true; |