aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel
diff options
context:
space:
mode:
authorPaul Gilbert2011-10-14 20:38:00 +1100
committerPaul Gilbert2011-10-14 20:38:00 +1100
commit6811a3daffc2743d2d733050be9306dcbf419214 (patch)
treecbbe56f522d62635d80d3fc90f50fc15fa710324 /engines/tinsel
parent744f8507d714da5710c020bf56aa49dd0662acf6 (diff)
downloadscummvm-rg350-6811a3daffc2743d2d733050be9306dcbf419214.tar.gz
scummvm-rg350-6811a3daffc2743d2d733050be9306dcbf419214.tar.bz2
scummvm-rg350-6811a3daffc2743d2d733050be9306dcbf419214.zip
TINSEL: Alter previous DW1 bugfix so that DW2 still works properly
Diffstat (limited to 'engines/tinsel')
-rw-r--r--engines/tinsel/pcode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tinsel/pcode.cpp b/engines/tinsel/pcode.cpp
index ae4c0d3ce1..6f8f4e2c4f 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_NOT;
+ ic->resumeState = TinselV2 ? RES_1 : RES_NOT;
LockCode(ic);