From 36f2f623051751cbfcb529d8ebb3a92c20747bab Mon Sep 17 00:00:00 2001 From: "SND\\MaddTheSane_cp" Date: Mon, 12 Dec 2011 03:32:21 +0000 Subject: Renaming com.codeplex.pcsxr.mdfdisc to com.alcohol-soft.mdfdisc, since the format appears to have originated from the Alcohol 120% software. Added support for bin/cue by opening the cue file, then getting the .bin file name from the .cue. Added handling of freeze states and disc images. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@73179 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- macosx/PcsxrPluginHandler.m | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'macosx/PcsxrPluginHandler.m') diff --git a/macosx/PcsxrPluginHandler.m b/macosx/PcsxrPluginHandler.m index 84919c56..7ab00161 100644 --- a/macosx/PcsxrPluginHandler.m +++ b/macosx/PcsxrPluginHandler.m @@ -14,7 +14,7 @@ { self = [super initWithWindow:window]; if (self) { - // Initialization code here. + moveOK = NO; } return self; @@ -22,9 +22,7 @@ - (id)init { - if (self = [super initWithWindowNibName:@"AddPluginSheet"]) { - moveOK = NO; - } + self = [super initWithWindowNibName:@"AddPluginSheet"]; return self; } @@ -53,8 +51,7 @@ [pluginName setObjectValue:[[NSURL fileURLWithPath:theFile] lastPathComponent]]; [NSApp runModalForWindow:[self window]]; - // Sheet is up here. - [NSApp endSheet:[self window]]; + [[self window] orderOut:self]; if (moveOK == YES) { NSFileWrapper *wrapper = [[NSFileWrapper alloc] initWithPath:theFile]; -- cgit v1.2.3