mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-19 07:01:09 +00:00
- fixed missing CANNONBALLS texture alias.
This commit is contained in:
parent
1bf03e463a
commit
07102fbd39
2 changed files with 3 additions and 1 deletions
|
@ -3269,7 +3269,8 @@ bool execute(DDukeActor *actor,int p,double xx)
|
|||
s.g_ac = actor;
|
||||
s.insptr = &ScriptCode[4 + (gs.actorinfo[actor->spr.picnum].scriptaddress)];
|
||||
auto insptr = coninf? &ScriptCode[4 + coninf->scriptaddress] : nullptr;
|
||||
if (insptr != s.insptr) Printf("%s: %p vs. %p\n", insptr, s.insptr);
|
||||
if (insptr != s.insptr)
|
||||
Printf("%s: %p vs. %p\n", actor->GetClass()->TypeName.GetChars(), insptr, s.insptr);
|
||||
s.killit_flag = 0;
|
||||
|
||||
int done;
|
||||
|
|
|
@ -484,6 +484,7 @@ x(LEGJIB1, 1776)
|
|||
x(APLAYERSWIMMING, 1795)
|
||||
x(CANNON, 1810)
|
||||
x(CANNONBALL, 1817)
|
||||
x(CANNONBALLS, 1818)
|
||||
x(OCTABRAIN, 1820)
|
||||
x(OCTABRAINSTAYPUT, 1821)
|
||||
x(OCTATOP, 1845)
|
||||
|
|
Loading…
Reference in a new issue