From 532f3e7bae955f8da4c2028bc462134ed10ff414 Mon Sep 17 00:00:00 2001 From: Pixel Date: Tue, 3 Apr 2012 09:30:58 -0700 Subject: Slightly more change to the Queue system, so Debug mode doesn't freak pout. --- src/LuaTask.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/LuaTask.cc') diff --git a/src/LuaTask.cc b/src/LuaTask.cc index acf63b5..80a56f6 100644 --- a/src/LuaTask.cc +++ b/src/LuaTask.cc @@ -32,7 +32,7 @@ void Balau::LuaMainTask::stop() { void Balau::LuaMainTask::Do() { while (!m_stopping) { LuaExecCell * cell; - while ((cell = m_queue.pop(false))) { + while ((cell = m_queue.pop())) { if (dynamic_cast(cell)) { delete cell; break; -- cgit v1.2.3