FX_CROWD constants are correct.

Add some simple stub.

svn-id: r15621
This commit is contained in:
Eugene Sandulenko 2004-10-20 22:38:24 +00:00
parent daee7c19e5
commit e58a097acf
3 changed files with 9 additions and 3 deletions

View file

@ -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;