Cocoa Port:

- Fix bug with Import ROM Save File where .sav files weren't being recognized.
This commit is contained in:
rogerman 2012-02-27 05:35:17 +00:00
parent 80b775730b
commit ab53131bd8
1 changed files with 1 additions and 1 deletions

View File

@ -566,7 +566,7 @@
[panel setResolvesAliases:YES];
[panel setAllowsMultipleSelection:NO];
[panel setTitle:NSSTRING_TITLE_IMPORT_ROM_SAVE_PANEL];
NSArray *fileTypes = [NSArray arrayWithObjects:@FILE_EXT_ROM_SAVE_NOGBA, @FILE_EXT_ACTION_REPLAY_SAVE, nil];
NSArray *fileTypes = [NSArray arrayWithObjects:@FILE_EXT_ROM_SAVE_RAW, @FILE_EXT_ACTION_REPLAY_SAVE, nil];
// The NSOpenPanel method -(NSInt)runModalForDirectory:file:types:
// is deprecated in Mac OS X v10.6.