From a7a2bb3b28212870d025b3d0615b42fd43c8f6a1 Mon Sep 17 00:00:00 2001 From: The Dax Date: Sat, 26 Apr 2014 01:14:08 -0400 Subject: [PATCH] Fix Linux build. --- UI/NativeApp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/NativeApp.cpp b/UI/NativeApp.cpp index a4d1adfcc9..98a6490164 100644 --- a/UI/NativeApp.cpp +++ b/UI/NativeApp.cpp @@ -321,7 +321,7 @@ void NativeInit(int argc, const char *argv[], if (!strncmp(argv[i], "--state=", strlen("--state=")) && strlen(argv[i]) > strlen("--state=")) stateToLoad = argv[i] + strlen("--state="); #if !defined(MOBILE_DEVICE) - if (!strncmp(__argv[i], "--escape-exit", strlen("--escape-exit"))) + if (!strncmp(argv[i], "--escape-exit", strlen("--escape-exit"))) g_Config.bEscapeExitsEmulator = true; #endif break;