summaryrefslogtreecommitdiff
path: root/macosx/PcsxrMemCardHandler.m
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/PcsxrMemCardHandler.m')
-rwxr-xr-xmacosx/PcsxrMemCardHandler.m15
1 files changed, 10 insertions, 5 deletions
diff --git a/macosx/PcsxrMemCardHandler.m b/macosx/PcsxrMemCardHandler.m
index ae7ea0a3..5b03023f 100755
--- a/macosx/PcsxrMemCardHandler.m
+++ b/macosx/PcsxrMemCardHandler.m
@@ -10,7 +10,13 @@
#import "ConfigurationController.h"
#import "EmuThread.h"
+@interface PcsxrMemCardHandler ()
+@property NSInteger memChosen;
+@end
+
@implementation PcsxrMemCardHandler
+@synthesize cardPath;
+@synthesize memChosen;
+ (NSArray *)supportedUTIs
{
@@ -33,19 +39,18 @@
- (id)init
{
- return self = [self initWithWindowNibName:@"PcsxrMemCardDocument"];
+ return self = [self initWithWindowNibName:@"PcsxrMemCard"];
}
- (void)windowDidLoad
{
- [super windowDidLoad];
-
- // Implement this method to handle any initialization after your window controller's window has been loaded from its nib file.
+ [super windowDidLoad];
+ // Implement this method to handle any initialization after your window controller's window has been loaded from its nib file.
}
- (NSString*)windowNibName
{
- return @"PcsxrMemCardDocument";
+ return @"PcsxrMemCard";
}
- (IBAction)setMemCard:(id)sender