From 12e168f4867ee2d6bd0908db2c1e4a50e94a60fe Mon Sep 17 00:00:00 2001 From: mgaver Date: Wed, 24 Apr 2013 17:43:00 +0900 Subject: [PATCH] Update NativeApp.cpp buildfix for ios jailbreak detection --- UI/NativeApp.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/UI/NativeApp.cpp b/UI/NativeApp.cpp index fc11b86953..6eaf1b7532 100644 --- a/UI/NativeApp.cpp +++ b/UI/NativeApp.cpp @@ -75,6 +75,11 @@ ScreenManager *screenManager; std::string config_filename; std::string game_title; +#ifdef IOS +bool isJailed; +#endif + + recursive_mutex pendingMutex; static bool isMessagePending; static std::string pendingMessage;