From 6d2930b3691d252047780a88d6c4f5d1f216f847 Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Tue, 11 Aug 2015 23:15:42 -0700 Subject: [PATCH] Compile fix --- lime/system/JNI.hx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lime/system/JNI.hx b/lime/system/JNI.hx index 3e135964f..0ea8214e1 100644 --- a/lime/system/JNI.hx +++ b/lime/system/JNI.hx @@ -134,7 +134,11 @@ class JNI { init (); + #if android return lime_jni_get_env (); + #else + return null; + #end }