From 9e7f98474172de27e8a10abafda6ee4d30cb20b4 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Thu, 29 Sep 2022 22:02:11 +0000 Subject: [PATCH] fix target.threaded in kiss conditional compilation --- src/kiss/Macros.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kiss/Macros.hx b/src/kiss/Macros.hx index 7bb5aeb..564f785 100644 --- a/src/kiss/Macros.hx +++ b/src/kiss/Macros.hx @@ -180,7 +180,7 @@ class Macros { // object, I don't know how to get it conditionInterp.variables["target"] = { threaded: - #if target.threaded + #if (cs || neko || cpp || java || python || hl) true #else false