- Added PCD_SCRIPTWAITNAMED p-code.

SVN r3756 (trunk)
This commit is contained in:
Randy Heit 2012-07-11 04:00:04 +00:00
parent 95b9eae242
commit 616672237d
2 changed files with 8 additions and 2 deletions

View File

@ -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)
{

View File

@ -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
};