change Opcodes.Add by Opcodes.Sub

This commit is contained in:
greggameplayer 2018-07-08 23:10:06 +02:00 committed by GitHub
parent f68c8107a6
commit f3f50e9a32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -530,7 +530,7 @@ namespace ChocolArm64.Instruction
EmitScalarTernaryOpByElemF(Context, () =>
{
Context.Emit(OpCodes.Mul);
Context.Emit(OpCodes.Add);
Context.Emit(OpCodes.Sub);
});
}