From 92c29a48866f85a18527acfc6ee5afd4c546dcf4 Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Sun, 30 Aug 2015 22:32:48 -0700 Subject: [PATCH] Compile fix --- lime/system/System.hx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lime/system/System.hx b/lime/system/System.hx index a6e276869..d1676b6ac 100644 --- a/lime/system/System.hx +++ b/lime/system/System.hx @@ -186,7 +186,8 @@ class System { public static function getDisplay (id:Int):Display { - #if ((cpp || neko || nodejs) && !macro) + #if !macro + #if (cpp || neko || nodejs) var displayInfo:Dynamic = lime_system_get_display.call (id); if (displayInfo != null) { @@ -229,6 +230,7 @@ class System { } #end + #end return null;