Default to bundled images path

This commit is contained in:
Aaron Culliney
2014-12-06 17:07:58 -08:00
parent d52075d5c1
commit 91b1cc58f9

View File

@@ -243,8 +243,7 @@
NSURL *url = [[NSUserDefaults standardUserDefaults] URLForKey:kApple2DisksURL]; NSURL *url = [[NSUserDefaults standardUserDefaults] URLForKey:kApple2DisksURL];
if (!url) if (!url)
{ {
url = [[NSBundle mainBundle] URLForResource:@"blank" withExtension:@"dsk.gz"]; url = [[NSBundle mainBundle] URLForResource:@"images" withExtension:nil];
url = [url URLByDeletingLastPathComponent];
} }
[openPanel setDirectoryURL:url]; [openPanel setDirectoryURL:url];
[openPanel setShowsResizeIndicator:YES]; [openPanel setShowsResizeIndicator:YES];