mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-27 10:10:57 +00:00
(Apple) Change some preprocessor conditionals to cover all bases
This commit is contained in:
parent
de67a13ab9
commit
117d48c898
@ -72,7 +72,7 @@
|
||||
* we need to extract to a user-writable directory on first boot.
|
||||
*
|
||||
* Examples include: Android, iOS/OSX) */
|
||||
#if defined(ANDROID) || defined(IOS) || defined(OSX)
|
||||
#if defined(ANDROID) || defined(__APPLE__)
|
||||
#define DEFAULT_BUNDLE_ASSETS_EXTRACT_ENABLE true
|
||||
#else
|
||||
#define DEFAULT_BUNDLE_ASSETS_EXTRACT_ENABLE false
|
||||
|
@ -2445,7 +2445,7 @@ void config_set_defaults(void *data)
|
||||
*settings->paths.path_content_music_history = '\0';
|
||||
*settings->paths.path_content_video_history = '\0';
|
||||
*settings->paths.path_cheat_settings = '\0';
|
||||
#if !defined(IOS) && !defined(OSX)
|
||||
#if !defined(__APPLE__)
|
||||
*settings->arrays.bundle_assets_src = '\0';
|
||||
*settings->arrays.bundle_assets_dst = '\0';
|
||||
*settings->arrays.bundle_assets_dst_subdir = '\0';
|
||||
|
Loading…
Reference in New Issue
Block a user