aboutsummaryrefslogtreecommitdiff
path: root/engines/made/scriptfuncs.cpp
diff options
context:
space:
mode:
authorBenjamin Haisch2008-09-28 20:02:01 +0000
committerBenjamin Haisch2008-09-28 20:02:01 +0000
commitcea848303b506694063f9df33ac8619a4a31b5e3 (patch)
tree9281852ef328a438ddf62e8d2ed30b135105c510 /engines/made/scriptfuncs.cpp
parent7e8967fd11a15151632dbdb9f0cc438265510aa5 (diff)
downloadscummvm-rg350-cea848303b506694063f9df33ac8619a4a31b5e3.tar.gz
scummvm-rg350-cea848303b506694063f9df33ac8619a4a31b5e3.tar.bz2
scummvm-rg350-cea848303b506694063f9df33ac8619a4a31b5e3.zip
Return 32000 in sfGetCdTime instead of 0; this fixes the Manhole intro/credits (until the function is actually implemented)
svn-id: r34671
Diffstat (limited to 'engines/made/scriptfuncs.cpp')
-rw-r--r--engines/made/scriptfuncs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/made/scriptfuncs.cpp b/engines/made/scriptfuncs.cpp
index d697e24b04..0051b80dae 100644
--- a/engines/made/scriptfuncs.cpp
+++ b/engines/made/scriptfuncs.cpp
@@ -571,7 +571,7 @@ int16 ScriptFunctions::sfGetCdTime(int16 argc, int16 *argv) {
// This one is called loads of times, so it has been commented out to reduce spam
//warning("Unimplemented opcode: sfGetCdTime");
// TODO
- return 0;
+ return 32000;
}
int16 ScriptFunctions::sfPlayCdSegment(int16 argc, int16 *argv) {