mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- Added PCD_SCRIPTWAITNAMED p-code.
SVN r3756 (trunk)
This commit is contained in:
parent
95b9eae242
commit
616672237d
2 changed files with 8 additions and 2 deletions
|
@ -5311,6 +5311,11 @@ scriptwait:
|
|||
pc++;
|
||||
goto scriptwait;
|
||||
|
||||
case PCD_SCRIPTWAITNAMED:
|
||||
statedata = -FName(FBehavior::StaticLookupString(STACK(1)));
|
||||
sp--;
|
||||
goto scriptwait;
|
||||
|
||||
case PCD_CLEARLINESPECIAL:
|
||||
if (activationline != NULL)
|
||||
{
|
||||
|
|
|
@ -598,8 +598,9 @@ public:
|
|||
PCD_STRCPYTOMAPCHRANGE, // [FDARI] input range (copy string to all/part of array)
|
||||
PCD_STRCPYTOWORLDCHRANGE,
|
||||
PCD_STRCPYTOGLOBALCHRANGE,
|
||||
PCD_PUSHFUNCTION,
|
||||
/*360*/ PCD_CALLSTACK,
|
||||
PCD_PUSHFUNCTION, // from Eternity
|
||||
/*360*/ PCD_CALLSTACK, // from Eternity
|
||||
PCD_SCRIPTWAITNAMED,
|
||||
|
||||
/*361*/ PCODE_COMMAND_COUNT
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue