From 668bf1b858edd445bd03fa748ebcd29ff3bb3c64 Mon Sep 17 00:00:00 2001 From: Yuxiao Mao Date: Fri, 9 Aug 2024 10:43:31 +0200 Subject: [PATCH] Add ArrayBytes_hl_I64 support for nightly haxe see https://github.com/HaxeFoundation/haxe/pull/11742 --- hld/Eval.hx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hld/Eval.hx b/hld/Eval.hx index 82baf49..a221b70 100644 --- a/hld/Eval.hx +++ b/hld/Eval.hx @@ -1113,6 +1113,8 @@ class Eval { v = makeArrayBytes(p, HF32); case "hl.types.ArrayBytes_hl_UI16": v = makeArrayBytes(p, HUi16); + case "hl.types.ArrayBytes_hl_I64": + v = makeArrayBytes(p, HI64); case "hl.types.ArrayDyn": // hide implementation details, substitute underlying array v = readField({ v : v, t : t }, "array").v;