- always pass complete argument lists in the VM.
This commit is contained in:
parent
16053c7cdb
commit
95ab1da6a0
2 changed files with 32 additions and 0 deletions
|
|
@ -501,6 +501,13 @@ public:
|
|||
isresolved = true;
|
||||
}
|
||||
|
||||
FxConstant(void *state, const FScriptPosition &pos) : FxExpression(EFX_Constant, pos)
|
||||
{
|
||||
value.pointer = state;
|
||||
ValueType = value.Type = TypeVoidPtr;
|
||||
isresolved = true;
|
||||
}
|
||||
|
||||
FxConstant(const FScriptPosition &pos) : FxExpression(EFX_Constant, pos)
|
||||
{
|
||||
value.pointer = nullptr;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue