diff options
author | Paul Gilbert | 2011-10-14 20:38:00 +1100 |
---|---|---|
committer | Paul Gilbert | 2011-10-14 20:38:00 +1100 |
commit | 6811a3daffc2743d2d733050be9306dcbf419214 (patch) | |
tree | cbbe56f522d62635d80d3fc90f50fc15fa710324 /engines/tinsel | |
parent | 744f8507d714da5710c020bf56aa49dd0662acf6 (diff) | |
download | scummvm-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.cpp | 2 |
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); |