mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
Fixed EFX_ enum for FxFormat
This commit is contained in:
parent
e75aa08d0a
commit
fcc5f4b77b
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -255,7 +255,7 @@ enum EFxType
|
|||
EFX_MemberFunctionCall,
|
||||
EFX_ActionSpecialCall,
|
||||
EFX_FlopFunctionCall,
|
||||
EFX_FormatFunctionCall,
|
||||
EFX_Format,
|
||||
EFX_VMFunctionCall,
|
||||
EFX_Sequence,
|
||||
EFX_CompoundStatement,
|
||||
|
|
Loading…
Reference in a new issue