aboutsummaryrefslogtreecommitdiff
path: root/saga/sfuncs.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2004-10-20 22:38:24 +0000
committerEugene Sandulenko2004-10-20 22:38:24 +0000
commite58a097acfd231f36eda89f76b385c7c13d58ded (patch)
treeee08e85740a3df8025371098fd5d47764e6ecf85 /saga/sfuncs.cpp
parentdaee7c19e53817e5e331286c2c595c8358dcd74a (diff)
downloadscummvm-rg350-e58a097acfd231f36eda89f76b385c7c13d58ded.tar.gz
scummvm-rg350-e58a097acfd231f36eda89f76b385c7c13d58ded.tar.bz2
scummvm-rg350-e58a097acfd231f36eda89f76b385c7c13d58ded.zip
FX_CROWD constants are correct.
Add some simple stub. svn-id: r15621
Diffstat (limited to 'saga/sfuncs.cpp')
-rw-r--r--saga/sfuncs.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/saga/sfuncs.cpp b/saga/sfuncs.cpp
index 9cbda863e8..84daf5b547 100644
--- a/saga/sfuncs.cpp
+++ b/saga/sfuncs.cpp
@@ -112,7 +112,7 @@ void Script::setupScriptFuncList(void) {
{66, 0, NULL},
{67, 0, NULL},
{68, 0, NULL},
- {69, 0, NULL},
+ {69, 1, OPCODE(SF_enableEscape)},
{70, 1, OPCODE(SF_playSound)},
{71, 0, NULL},
{72, 0, NULL},
@@ -733,6 +733,12 @@ int Script::SF_playMusic(R_SCRIPTFUNC_PARAMS) {
return R_SUCCESS;
}
+// Script function #69
+int Script::SF_enableEscape(R_SCRIPTFUNC_PARAMS) {
+ thread->pop();
+ return R_SUCCESS;
+}
+
static struct {
int res;
int vol;