diff options
author | Paul Gilbert | 2011-10-04 20:47:01 +1100 |
---|---|---|
committer | Paul Gilbert | 2011-10-04 20:47:01 +1100 |
commit | d5690e09b3db59c269e36f7ba7a8583c341d4504 (patch) | |
tree | 7b4c049e0a0bdf59b7e516fed48c9361be962782 | |
parent | f83b53ad6bdf58a90791c3c1123f427cf5b7ddb7 (diff) | |
download | scummvm-rg350-d5690e09b3db59c269e36f7ba7a8583c341d4504.tar.gz scummvm-rg350-d5690e09b3db59c269e36f7ba7a8583c341d4504.tar.bz2 scummvm-rg350-d5690e09b3db59c269e36f7ba7a8583c341d4504.zip |
TINSEL: Bugfix for #2893946 - DW1 psychiatrist scene isn't playing
-rw-r--r-- | engines/tinsel/pcode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tinsel/pcode.cpp b/engines/tinsel/pcode.cpp index 2ab1e653d4..ae4c0d3ce1 100644 --- a/engines/tinsel/pcode.cpp +++ b/engines/tinsel/pcode.cpp @@ -394,7 +394,7 @@ INT_CONTEXT *RestoreInterpretContext(INT_CONTEXT *ric) { memcpy(ic, ric, sizeof(INT_CONTEXT)); ic->pProc = g_scheduler->getCurrentProcess(); - ic->resumeState = RES_1; + ic->resumeState = RES_NOT; LockCode(ic); |