- remove erroneous assert in the ZScript codegen compiler

- fixes issue #1279
This commit is contained in:
Rachael Alexanderson 2021-01-17 10:58:32 -05:00 committed by drfrag
parent da90f839cf
commit 87adc72e4b

View file

@ -9398,7 +9398,6 @@ FxExpression *FxFlopFunctionCall::Resolve(FCompileContext& ctx)
ExpEmit FxFlopFunctionCall::Emit(VMFunctionBuilder *build)
{
assert(ValueType == ArgList[0]->ValueType);
ExpEmit from = ArgList[0]->Emit(build);
ExpEmit to;
assert(from.Konst == 0);