aboutsummaryrefslogtreecommitdiff
path: root/engines/illusions/thread.cpp
diff options
context:
space:
mode:
authorEric Fry2018-06-26 22:35:31 +1000
committerEugene Sandulenko2018-07-20 06:43:33 +0000
commit989d8d9b8abecee3f0b72c92a05067e128fc6cdd (patch)
tree6879c75dccd45e4ae6f2396ee62425f625494f37 /engines/illusions/thread.cpp
parent7cadb7ad0ce7b24c28d3fa9d842f7083ae5b9056 (diff)
downloadscummvm-rg350-989d8d9b8abecee3f0b72c92a05067e128fc6cdd.tar.gz
scummvm-rg350-989d8d9b8abecee3f0b72c92a05067e128fc6cdd.tar.bz2
scummvm-rg350-989d8d9b8abecee3f0b72c92a05067e128fc6cdd.zip
ILLUSIONS: Formatting, remove trailing whitespace.
Diffstat (limited to 'engines/illusions/thread.cpp')
-rw-r--r--engines/illusions/thread.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/illusions/thread.cpp b/engines/illusions/thread.cpp
index d984af2c67..3c327bab21 100644
--- a/engines/illusions/thread.cpp
+++ b/engines/illusions/thread.cpp
@@ -307,11 +307,11 @@ void ThreadList::killThread(uint32 threadId) {
if (!threadId)
return;
-
+
Thread *thread = findThread(threadId);
if (!thread)
return;
-
+
for (Iterator it = _threads.begin(); it != _threads.end(); ++it) {
Thread *childThread = *it;
if (childThread->_callingThreadId == threadId)