Add missing opcode in HE100 table.
Rename opcode. svn-id: r19174
This commit is contained in:
parent
a5e95b89c6
commit
d91fc4c226
5 changed files with 8 additions and 8 deletions
|
@ -1009,7 +1009,7 @@ protected:
|
|||
void o72_captureWizImage();
|
||||
void o72_getTimer();
|
||||
void o72_setTimer();
|
||||
void o72_getSoundElapsedTime();
|
||||
void o72_getSoundPosition();
|
||||
void o72_startScript();
|
||||
void o72_startObject();
|
||||
void o72_drawObject();
|
||||
|
|
|
@ -59,7 +59,7 @@ void ScummEngine_v100he::setupOpcodes() {
|
|||
OPCODE(o6_loadRoom),
|
||||
OPCODE(o6_panCameraTo),
|
||||
/* 10 */
|
||||
OPCODE(o6_invalid),
|
||||
OPCODE(o72_captureWizImage),
|
||||
OPCODE(o100_jumpToScript),
|
||||
OPCODE(o6_setClass),
|
||||
OPCODE(o60_closeFile),
|
||||
|
@ -309,7 +309,7 @@ void ScummEngine_v100he::setupOpcodes() {
|
|||
OPCODE(o6_isScriptRunning),
|
||||
OPCODE(o90_sin),
|
||||
/* D8 */
|
||||
OPCODE(o72_getSoundElapsedTime),
|
||||
OPCODE(o72_getSoundPosition),
|
||||
OPCODE(o6_isSoundRunning),
|
||||
OPCODE(o80_getSoundVar),
|
||||
OPCODE(o100_getSpriteInfo),
|
||||
|
|
|
@ -156,7 +156,7 @@ void ScummEngine_v72he::setupOpcodes() {
|
|||
/* 58 */
|
||||
OPCODE(o72_getTimer),
|
||||
OPCODE(o72_setTimer),
|
||||
OPCODE(o72_getSoundElapsedTime),
|
||||
OPCODE(o72_getSoundPosition),
|
||||
OPCODE(o6_wordArrayDec),
|
||||
/* 5C */
|
||||
OPCODE(o6_if),
|
||||
|
@ -886,10 +886,10 @@ void ScummEngine_v72he::o72_setTimer() {
|
|||
}
|
||||
}
|
||||
|
||||
void ScummEngine_v72he::o72_getSoundElapsedTime() {
|
||||
void ScummEngine_v72he::o72_getSoundPosition() {
|
||||
int snd = pop();
|
||||
push(_sound->getSoundElapsedTime(snd) * 10);
|
||||
debug(1,"o72_getSoundElapsedTime (%d)", snd);
|
||||
debug(1,"o72_getSoundPosition (%d)", snd);
|
||||
}
|
||||
|
||||
void ScummEngine_v72he::o72_startScript() {
|
||||
|
|
|
@ -155,7 +155,7 @@ void ScummEngine_v80he::setupOpcodes() {
|
|||
/* 58 */
|
||||
OPCODE(o72_getTimer),
|
||||
OPCODE(o72_setTimer),
|
||||
OPCODE(o72_getSoundElapsedTime),
|
||||
OPCODE(o72_getSoundPosition),
|
||||
OPCODE(o6_wordArrayDec),
|
||||
/* 5C */
|
||||
OPCODE(o6_if),
|
||||
|
|
|
@ -152,7 +152,7 @@ void ScummEngine_v90he::setupOpcodes() {
|
|||
/* 58 */
|
||||
OPCODE(o72_getTimer),
|
||||
OPCODE(o72_setTimer),
|
||||
OPCODE(o72_getSoundElapsedTime),
|
||||
OPCODE(o72_getSoundPosition),
|
||||
OPCODE(o6_wordArrayDec),
|
||||
/* 5C */
|
||||
OPCODE(o6_if),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue