(iOS) Remove hardcoded default config paths

This commit is contained in:
twinaphex 2013-11-26 20:08:06 +01:00
parent a8f51e4477
commit 0ce62ed346

View File

@ -297,8 +297,6 @@ static bool config_save_on_exit = false;
// Default overlay directory
#if defined(__QNX__)
static const char *default_overlay_dir = "app/native/overlays/";
#elif defined(IOS)
static const char *default_overlay_dir = "/Applications/RetroArch.app/overlays/";
#elif defined(ANDROID)
static const char *default_overlay_dir = "/data/data/com.retroarch/overlays/";
#else
@ -308,8 +306,6 @@ static const char *default_overlay_dir = NULL;
#if defined(__QNX__)
static const char *default_shader_dir = "/app/native/shaders_glsl/";
#elif defined(IOS)
static const char *default_shader_dir = "/Applications/RetroArch.app/shaders_glsl/";
#elif defined(ANDROID)
static const char *default_shader_dir = "/data/data/com.retroarch/shaders_glsl/";
#else
@ -332,8 +328,6 @@ static bool default_block_config_read = false;
static const char *default_libretro_info_path = "/data/data/com.retroarch/info/";
#elif defined(__QNX__)
static const char *default_libretro_info_path = "/app/native/info/";
#elif defined(IOS)
static const char *default_libretro_info_path = "/Applications/RetroArch.app/modules/";
#else
static const char *default_libretro_info_path = NULL;
#endif