From a46eecc8310d3582bbb9b2f2d8628d5c2ad31449 Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Wed, 7 Jun 2023 18:12:01 -0700 Subject: [PATCH] Disable try_blocking for now (requires HXCPP 4.3+) --- project/src/system/System.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/project/src/system/System.cpp b/project/src/system/System.cpp index 4385ae268..4399f399c 100644 --- a/project/src/system/System.cpp +++ b/project/src/system/System.cpp @@ -46,7 +46,8 @@ namespace lime { if (!_isHL) { - gc_try_blocking (); + // TODO: Only supported in HXCPP 4.3 + // gc_try_blocking (); } @@ -57,7 +58,8 @@ namespace lime { if (!_isHL) { - gc_try_unblocking (); + // TODO: Only supported in HXCPP 4.3 + //gc_try_unblocking (); }