mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +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++;
|
pc++;
|
||||||
goto scriptwait;
|
goto scriptwait;
|
||||||
|
|
||||||
|
case PCD_SCRIPTWAITNAMED:
|
||||||
|
statedata = -FName(FBehavior::StaticLookupString(STACK(1)));
|
||||||
|
sp--;
|
||||||
|
goto scriptwait;
|
||||||
|
|
||||||
case PCD_CLEARLINESPECIAL:
|
case PCD_CLEARLINESPECIAL:
|
||||||
if (activationline != NULL)
|
if (activationline != NULL)
|
||||||
{
|
{
|
||||||
|
|
|
@ -598,8 +598,9 @@ public:
|
||||||
PCD_STRCPYTOMAPCHRANGE, // [FDARI] input range (copy string to all/part of array)
|
PCD_STRCPYTOMAPCHRANGE, // [FDARI] input range (copy string to all/part of array)
|
||||||
PCD_STRCPYTOWORLDCHRANGE,
|
PCD_STRCPYTOWORLDCHRANGE,
|
||||||
PCD_STRCPYTOGLOBALCHRANGE,
|
PCD_STRCPYTOGLOBALCHRANGE,
|
||||||
PCD_PUSHFUNCTION,
|
PCD_PUSHFUNCTION, // from Eternity
|
||||||
/*360*/ PCD_CALLSTACK,
|
/*360*/ PCD_CALLSTACK, // from Eternity
|
||||||
|
PCD_SCRIPTWAITNAMED,
|
||||||
|
|
||||||
/*361*/ PCODE_COMMAND_COUNT
|
/*361*/ PCODE_COMMAND_COUNT
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue