aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/script_v1.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2006-03-15 21:59:07 +0000
committerJohannes Schickel2006-03-15 21:59:07 +0000
commitb46236ed7164f3b242c04fdc116eade68d3ab04c (patch)
tree41f8d55f0be80ea8bcee3fe02adfb77dd65d7825 /engines/kyra/script_v1.cpp
parent2eaa929af786880ae8de616ca3c4b8b9b38a18c7 (diff)
downloadscummvm-rg350-b46236ed7164f3b242c04fdc116eade68d3ab04c.tar.gz
scummvm-rg350-b46236ed7164f3b242c04fdc116eade68d3ab04c.tar.bz2
scummvm-rg350-b46236ed7164f3b242c04fdc116eade68d3ab04c.zip
- removes a wrong space in debugC calls in screen.cpp
- implements cmd_brandonToStoneSequence and cmd_pauseMusicSeconds svn-id: r21320
Diffstat (limited to 'engines/kyra/script_v1.cpp')
-rw-r--r--engines/kyra/script_v1.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/engines/kyra/script_v1.cpp b/engines/kyra/script_v1.cpp
index 916e328daa..d869c8a7cf 100644
--- a/engines/kyra/script_v1.cpp
+++ b/engines/kyra/script_v1.cpp
@@ -1671,7 +1671,8 @@ int KyraEngine::cmd_setPlayingLoop(ScriptState *script) {
}
int KyraEngine::cmd_brandonToStoneSequence(ScriptState *script) {
- warning("STUB: cmd_brandonToStoneSequence");
+ debugC(3, kDebugLevelScriptFuncs, "cmd_brandonToStoneSequence(%p) ()", (const void *)script);
+ seq_brandonToStone();
return 0;
}
@@ -1687,7 +1688,10 @@ int KyraEngine::cmd_protectCommandLine(ScriptState *script) {
}
int KyraEngine::cmd_pauseMusicSeconds(ScriptState *script) {
- warning("STUB: cmd_pauseMusicSeconds");
+ debugC(3, kDebugLevelScriptFuncs, "cmd_pauseMusicSeconds(%p) ()", (const void *)script);
+ // if music disabled
+ // return
+ cmd_pauseSeconds(script);
return 0;
}