diff --git a/apple/iOS/platform.h b/apple/iOS/platform.h index df2dd2f97c..b969d40b30 100644 --- a/apple/iOS/platform.h +++ b/apple/iOS/platform.h @@ -25,18 +25,7 @@ typedef struct { char orientations[32]; unsigned orientation_flags; - - bool logging_enabled; - char bluetooth_mode[64]; - - struct - { - int stdout; - int stderr; - - FILE* file; - } logging; } apple_frontend_settings_t; extern apple_frontend_settings_t apple_frontend_settings; @@ -65,7 +54,6 @@ const void* apple_get_frontend_settings(void); @property (nonatomic) NSString* documentsDirectory; // e.g. /var/mobile/Documents @property (nonatomic) NSString* systemDirectory; // e.g. /var/mobile/Documents/.RetroArch @property (nonatomic) NSString* systemConfigPath; // e.g. /var/mobile/Documents/.RetroArch/frontend.cfg -@property (nonatomic) NSString* logPath; @end diff --git a/apple/iOS/platform.m b/apple/iOS/platform.m index 53cd7b27b4..dad5f44d2b 100644 --- a/apple/iOS/platform.m +++ b/apple/iOS/platform.m @@ -211,7 +211,6 @@ static void handle_touch_event(NSArray* touches) self.configDirectory = self.systemDirectory; self.globalConfigFile = [NSString stringWithFormat:@"%@/retroarch.cfg", self.configDirectory]; self.coreDirectory = [NSBundle.mainBundle.bundlePath stringByAppendingPathComponent:@"modules"]; - self.logPath = [self.systemDirectory stringByAppendingPathComponent:@"stdout.log"]; path = (const char*)self.documentsDirectory.UTF8String; path_mkdir(path);