From f42d66e7e10c2e5c9f9cf12290d4cb1a3ca0eb7f Mon Sep 17 00:00:00 2001 From: jtuu Date: Thu, 17 Oct 2019 23:49:27 +0300 Subject: [PATCH] [VM] Transform float arithmethic arguments to valid 32-bit floats. --- src/quest_editor/scripting/vm/index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/quest_editor/scripting/vm/index.ts b/src/quest_editor/scripting/vm/index.ts index a351e7fc..c14a8ed2 100644 --- a/src/quest_editor/scripting/vm/index.ts +++ b/src/quest_editor/scripting/vm/index.ts @@ -344,25 +344,25 @@ export class VirtualMachine { this.do_float_op_with_register(arg0, arg1, numeric_ops.add); break; case OP_FADDI.code: - this.do_float_op_with_literal(arg0, arg1, numeric_ops.add); + this.do_float_op_with_literal(arg0, Math.fround(arg1), numeric_ops.add); break; case OP_FSUB.code: this.do_float_op_with_register(arg0, arg1, numeric_ops.sub); break; case OP_FSUBI.code: - this.do_float_op_with_literal(arg0, arg1, numeric_ops.sub); + this.do_float_op_with_literal(arg0, Math.fround(arg1), numeric_ops.sub); break; case OP_FMUL.code: this.do_float_op_with_register(arg0, arg1, numeric_ops.mul); break; case OP_FMULI.code: - this.do_float_op_with_literal(arg0, arg1, numeric_ops.mul); + this.do_float_op_with_literal(arg0, Math.fround(arg1), numeric_ops.mul); break; case OP_FDIV.code: this.do_float_op_with_register(arg0, arg1, numeric_ops.div); break; case OP_FDIVI.code: - this.do_float_op_with_literal(arg0, arg1, numeric_ops.div); + this.do_float_op_with_literal(arg0, Math.fround(arg1), numeric_ops.div); break; // bit operations case OP_AND.code: