- 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
parent b70c66e2cc
commit efa788cd5e

View file

@ -9014,7 +9014,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);