mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
reimplemented opcode 0xEC a better way
svn-id: r3801
This commit is contained in:
parent
70f18a9394
commit
7b1bbf81e0
@ -322,7 +322,7 @@ void Scumm::setupOpcodes2() {
|
||||
&Scumm::o6_invalid,
|
||||
&Scumm::o6_invalid,
|
||||
/* EC */
|
||||
&Scumm::o6_setBlastWindow,
|
||||
&Scumm::o6_getActorPriority,
|
||||
&Scumm::o6_getObjectNewDir,
|
||||
&Scumm::o6_invalid,
|
||||
&Scumm::o6_invalid,
|
||||
@ -2833,10 +2833,11 @@ void Scumm::decodeParseString2(int m, int n) {
|
||||
}
|
||||
}
|
||||
|
||||
void Scumm::o6_setBlastWindow()
|
||||
void Scumm::o6_getActorPriority()
|
||||
{
|
||||
pop();
|
||||
pop();
|
||||
pop();
|
||||
pop();
|
||||
Actor *a;
|
||||
|
||||
a=derefActorSafe(pop(),"getActorPriority");
|
||||
|
||||
push(a->layer);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user