aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel/inventory.cpp
diff options
context:
space:
mode:
authorMax Horn2008-07-23 16:55:52 +0000
committerMax Horn2008-07-23 16:55:52 +0000
commit29a96430a06b415b9965f261785eb256224c8004 (patch)
treebac17aac75e66faff2cdb08fb268c10bdf01cb63 /engines/tinsel/inventory.cpp
parent918e0fe4738ce3de0c069ec0fd423ae0daa524f0 (diff)
downloadscummvm-rg350-29a96430a06b415b9965f261785eb256224c8004.tar.gz
scummvm-rg350-29a96430a06b415b9965f261785eb256224c8004.tar.bz2
scummvm-rg350-29a96430a06b415b9965f261785eb256224c8004.zip
TINSEL: Renamed CoroutineInstall back to ProcessCreate; got rid of yet another typedef; more cleanup
svn-id: r33249
Diffstat (limited to 'engines/tinsel/inventory.cpp')
-rw-r--r--engines/tinsel/inventory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/tinsel/inventory.cpp b/engines/tinsel/inventory.cpp
index 96ee01edf6..9c07748ab3 100644
--- a/engines/tinsel/inventory.cpp
+++ b/engines/tinsel/inventory.cpp
@@ -980,7 +980,7 @@ void RunInvTinselCode(PINV_OBJECT pinvo, USER_EVENT event, BUTEVENT be, int inde
return;
GlitterIndex = index;
- CoroutineInstall(PID_TCODE, InvTinselProcess, &to, sizeof(to));
+ ProcessCreate(PID_TCODE, InvTinselProcess, &to, sizeof(to));
}
/**************************************************************************/
@@ -3938,7 +3938,7 @@ void InvPickup(int index) {
else if (!(invObj->attribute & IO_ONLYINV1 && ino !=INV_1)
&& !(invObj->attribute & IO_ONLYINV2 && ino !=INV_2))
- CoroutineInstall(PID_TCODE, InvPdProcess, &index, sizeof(index));
+ ProcessCreate(PID_TCODE, InvPdProcess, &index, sizeof(index));
}
}
}