mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-19 10:41:55 +00:00
sf92 is not null in the demo version of IHNM
svn-id: r28343
This commit is contained in:
parent
f77195a5cc
commit
a09a95c99a
@ -596,6 +596,7 @@ private:
|
|||||||
void sf89(SCRIPTFUNC_PARAMS);
|
void sf89(SCRIPTFUNC_PARAMS);
|
||||||
void sfGetPoints(SCRIPTFUNC_PARAMS);
|
void sfGetPoints(SCRIPTFUNC_PARAMS);
|
||||||
void sfSetGlobalFlag(SCRIPTFUNC_PARAMS);
|
void sfSetGlobalFlag(SCRIPTFUNC_PARAMS);
|
||||||
|
void sf92(SCRIPTFUNC_PARAMS);
|
||||||
void sfClearGlobalFlag(SCRIPTFUNC_PARAMS);
|
void sfClearGlobalFlag(SCRIPTFUNC_PARAMS);
|
||||||
void sfTestGlobalFlag(SCRIPTFUNC_PARAMS);
|
void sfTestGlobalFlag(SCRIPTFUNC_PARAMS);
|
||||||
void sfSetPoints(SCRIPTFUNC_PARAMS);
|
void sfSetPoints(SCRIPTFUNC_PARAMS);
|
||||||
|
@ -230,7 +230,7 @@ static const ScriptFunctionDescription IHNMscriptFunctionsList[IHNM_SCRIPT_FUNCT
|
|||||||
OPCODE(sf89),
|
OPCODE(sf89),
|
||||||
OPCODE(sfVstopFX),
|
OPCODE(sfVstopFX),
|
||||||
OPCODE(sfVstopLoopedFX),
|
OPCODE(sfVstopLoopedFX),
|
||||||
OPCODE(sfNull),
|
OPCODE(sf92), // only used in the demo version of IHNM
|
||||||
OPCODE(sfDemoIsInteractive),
|
OPCODE(sfDemoIsInteractive),
|
||||||
OPCODE(sfVsetTrack),
|
OPCODE(sfVsetTrack),
|
||||||
OPCODE(sfGetPoints),
|
OPCODE(sfGetPoints),
|
||||||
@ -2109,6 +2109,11 @@ void Script::sfVstopLoopedFX(SCRIPTFUNC_PARAMS) {
|
|||||||
_vm->_sound->stopSound();
|
_vm->_sound->stopSound();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Script::sf92(SCRIPTFUNC_PARAMS) {
|
||||||
|
SF_stub("sf92", thread, nArgs);
|
||||||
|
// This opcode is empty in the full version of IHNM, but it's not empty in the demo
|
||||||
|
}
|
||||||
|
|
||||||
void Script::sfDemoIsInteractive(SCRIPTFUNC_PARAMS) {
|
void Script::sfDemoIsInteractive(SCRIPTFUNC_PARAMS) {
|
||||||
thread->_returnValue = 0;
|
thread->_returnValue = 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user