From f66e54c4cb2651a56d5ea46c46de6b29d7b69f24 Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Wed, 5 Apr 2017 16:25:17 +0200 Subject: [PATCH] Operator precedence fix in ifdef --- UI/NativeApp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/NativeApp.cpp b/UI/NativeApp.cpp index b609fdee6b..e6eeb13397 100644 --- a/UI/NativeApp.cpp +++ b/UI/NativeApp.cpp @@ -329,7 +329,7 @@ void NativeInit(int argc, const char *argv[], const char *savegame_dir, const ch VFSRegister("", new DirectoryAssetReader("assets/")); VFSRegister("", new DirectoryAssetReader(savegame_dir)); -#if defined(MOBILE_DEVICE) || !defined(USING_QT_UI) && !PPSSPP_PLATFORM(UWP) +#if (defined(MOBILE_DEVICE) || !defined(USING_QT_UI)) && !PPSSPP_PLATFORM(UWP) host = new NativeHost(); #endif