From c551bca6655c26c33f3e303cae78d8e5535f60dc Mon Sep 17 00:00:00 2001 From: Jon Maddox Date: Wed, 20 Mar 2013 22:44:11 -0400 Subject: [PATCH] open directly to the Documents directory --- ios/RetroArch/RetroArch_iOS.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/RetroArch/RetroArch_iOS.m b/ios/RetroArch/RetroArch_iOS.m index ecc2449e36..d9d9aa2128 100644 --- a/ios/RetroArch/RetroArch_iOS.m +++ b/ios/RetroArch/RetroArch_iOS.m @@ -57,7 +57,7 @@ // Setup window self.delegate = self; - [self pushViewController:[RADirectoryList directoryListOrGridWithPath:nil] animated:YES]; + [self pushViewController:[RADirectoryList directoryListOrGridWithPath:kDOCSFOLDER] animated:YES]; _window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; _window.rootViewController = self;