mirror of
https://github.com/ZDoom/acc.git
synced 2024-11-14 16:41:01 +00:00
Committed ACC changes.
SVN r516 (trunk)
This commit is contained in:
parent
1e63067140
commit
d239a69963
3 changed files with 6 additions and 0 deletions
2
pcode.c
2
pcode.c
|
@ -444,6 +444,8 @@ static char *PCDNames[PCODE_COMMAND_COUNT] =
|
|||
"PCD_GETACTORPITCH",
|
||||
"PCD_SETACTORPITCH",
|
||||
"PCD_PRINTBIND",
|
||||
"PCD_SETACTORSTATE",
|
||||
"PCD_THINGDAMAGE2",
|
||||
};
|
||||
|
||||
// CODE --------------------------------------------------------------------
|
||||
|
|
2
pcode.h
2
pcode.h
|
@ -394,6 +394,8 @@ typedef enum
|
|||
PCD_GETACTORPITCH,
|
||||
PCD_SETACTORPITCH,
|
||||
PCD_PRINTBIND,
|
||||
PCD_SETACTORSTATE,
|
||||
PCD_THINGDAMAGE2,
|
||||
|
||||
PCODE_COMMAND_COUNT
|
||||
} pcd_t;
|
||||
|
|
2
symbol.c
2
symbol.c
|
@ -179,6 +179,8 @@ static internFuncDef_t InternalFunctions[] =
|
|||
{ "replacetextures", PCD_NOP, PCD_REPLACETEXTURES, 3, 4, 0, NO, NO },
|
||||
{ "getactorpitch", PCD_NOP, PCD_GETACTORPITCH, 1, 0, 0, YES, NO },
|
||||
{ "setactorpitch", PCD_NOP, PCD_SETACTORPITCH, 2, 0, 0, NO, NO },
|
||||
{ "setactorstate", PCD_NOP, PCD_SETACTORSTATE, 3, 4, 0, YES, NO },
|
||||
{ "thing_damage2", PCD_NOP, PCD_THINGDAMAGE2, 3, 0, 0, YES, NO },
|
||||
|
||||
{ NULL, PCD_NOP, PCD_NOP, 0, 0, 0, NO, NO }
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue