Fixed EFX_ enum for FxFormat

This commit is contained in:
ZZYZX 2017-01-13 22:29:03 +02:00 committed by Christoph Oelckers
parent e75aa08d0a
commit fcc5f4b77b
2 changed files with 2 additions and 2 deletions

View File

@ -8356,7 +8356,7 @@ ExpEmit FxFlopFunctionCall::Emit(VMFunctionBuilder *build)
//==========================================================================
FxFormat::FxFormat(FArgumentList &args, const FScriptPosition &pos)
: FxExpression(EFX_FlopFunctionCall, pos)
: FxExpression(EFX_Format, pos)
{
ArgList = std::move(args);
}

View File

@ -255,7 +255,7 @@ enum EFxType
EFX_MemberFunctionCall,
EFX_ActionSpecialCall,
EFX_FlopFunctionCall,
EFX_FormatFunctionCall,
EFX_Format,
EFX_VMFunctionCall,
EFX_Sequence,
EFX_CompoundStatement,