From cde99cc1357824ca5c31ec367b7c5ed892b3b135 Mon Sep 17 00:00:00 2001 From: Twinaphex Date: Mon, 11 Jan 2016 07:54:33 +0100 Subject: [PATCH] (iOS) Add hacks to get this working for now --- configuration.c | 2 ++ menu/menu_driver.c | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/configuration.c b/configuration.c index 57ca35347b..eae69b338c 100644 --- a/configuration.c +++ b/configuration.c @@ -718,9 +718,11 @@ static void config_set_defaults(void) settings->bundle_assets_extract_version_current = 0; settings->bundle_assets_extract_last_version = 0; +#ifndef IOS *settings->bundle_assets_src_path = '\0'; *settings->bundle_assets_dst_path = '\0'; *settings->bundle_assets_dst_path_subdir = '\0'; +#endif *settings->playlist_names = '\0'; *settings->playlist_cores = '\0'; *settings->core_options_path = '\0'; diff --git a/menu/menu_driver.c b/menu/menu_driver.c index 8597a0f0a3..de6e117b33 100644 --- a/menu/menu_driver.c +++ b/menu/menu_driver.c @@ -609,7 +609,11 @@ void *menu_init(const void *data) settings->bundle_assets_extract_enable && !string_is_empty(settings->bundle_assets_src_path) && !string_is_empty(settings->bundle_assets_dst_path) +#ifdef IOS + && menu->push_help_screen +#else && settings->bundle_assets_extract_version_current != settings->bundle_assets_extract_last_version +#endif ) { menu->help_screen_type = MENU_HELP_EXTRACT;