aboutsummaryrefslogtreecommitdiff
path: root/engines/cruise/function.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cruise/function.cpp')
-rw-r--r--engines/cruise/function.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/engines/cruise/function.cpp b/engines/cruise/function.cpp
index 5971d191fa..73e1bd9084 100644
--- a/engines/cruise/function.cpp
+++ b/engines/cruise/function.cpp
@@ -102,10 +102,7 @@ int16 Op_startScript(void) {
ovlIdx = currentScriptPtr->overlayNumber;
}
- ptr =
- attacheNewScriptToTail(ovlIdx, &procHead, scriptIdx,
- currentScriptPtr->type, currentScriptPtr->scriptNumber,
- currentScriptPtr->overlayNumber, scriptType_MinusPROC);
+ ptr = attacheNewScriptToTail(ovlIdx, &procHead, scriptIdx, currentScriptPtr->type, currentScriptPtr->scriptNumber, currentScriptPtr->overlayNumber, scriptType_MinusPROC);
if (!ptr)
return (0);
@@ -194,7 +191,7 @@ int16 Op_rand(void) { // TODO: implement
if (var < 2) {
return (0);
}
-// return(8);
+
return (rand() % var);
}
@@ -797,7 +794,7 @@ int16 Op_66(void) {
getMultipleObjectParam(overlay, index, &params);
- return params.var7;
+ return params.var7 - 1;
}
int16 Op_SetActiveBackgroundPlane(void) {