(iOS) Add hacks to get this working for now

This commit is contained in:
Twinaphex 2016-01-11 07:54:33 +01:00
parent c9dd3ca621
commit cde99cc135
2 changed files with 6 additions and 0 deletions

View File

@ -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';

View File

@ -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;