- scriptified a large part of the weapon code.

This commit is contained in:
Christoph Oelckers 2017-01-19 17:40:34 +01:00
commit 19b1c10ba8
22 changed files with 463 additions and 445 deletions

View file

@ -2359,7 +2359,6 @@ FxExpression *FxAssign::Resolve(FCompileContext &ctx)
ExpEmit FxAssign::Emit(VMFunctionBuilder *build)
{
static const BYTE loadops[] = { OP_LK, OP_LKF, OP_LKS, OP_LKP };
assert(ValueType == Base->ValueType);
assert(ValueType->GetRegType() == Right->ValueType->GetRegType());
ExpEmit pointer = Base->Emit(build);