diff options
| author | johndoe123 | 2014-03-19 20:39:16 +0100 |
|---|---|---|
| committer | Eugene Sandulenko | 2018-07-20 06:43:33 +0000 |
| commit | 48ef46c02dfeb34706f1060f9443bb31c1a56093 (patch) | |
| tree | a310cd0d0cf07f4ac79bea72988e9e208a96c6ae /engines/illusions/thread.cpp | |
| parent | e881db073200fb2b3d7087c076ff3da77135516a (diff) | |
| download | scummvm-rg350-48ef46c02dfeb34706f1060f9443bb31c1a56093.tar.gz scummvm-rg350-48ef46c02dfeb34706f1060f9443bb31c1a56093.tar.bz2 scummvm-rg350-48ef46c02dfeb34706f1060f9443bb31c1a56093.zip | |
ILLUSIONS: Implement more script opcodes and related functions
Diffstat (limited to 'engines/illusions/thread.cpp')
| -rw-r--r-- | engines/illusions/thread.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/illusions/thread.cpp b/engines/illusions/thread.cpp index 0bfb82e5cd..a875585898 100644 --- a/engines/illusions/thread.cpp +++ b/engines/illusions/thread.cpp @@ -91,6 +91,7 @@ int Thread::update() { int status = kTSYield; if (!_terminated && _pauseCtr <= 0) { status = onUpdate(); + debug("Thread status: %d", status); if (status == kTSTerminate) terminate(); else if (status == kTSSuspend) |
