From 4372d55325a3a24248928a0ee057154cbd004f88 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 1 May 2016 16:01:03 +0200 Subject: [PATCH] Change ifdef to ifndef RARCH_CONSOLE --- configuration.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration.c b/configuration.c index 362670a742..2627628e3d 100644 --- a/configuration.c +++ b/configuration.c @@ -1039,7 +1039,7 @@ static config_file_t *open_default_config_file(void) RARCH_WARN("Created new config file in: \"%s\".\n", conf_path); } -#elif !defined(__CELLOS_LV2__) && !defined(_XBOX) +#elif !defined(RARCH_CONSOLE) bool has_application_data = fill_pathname_application_data(application_data, sizeof(application_data));