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/PcsxrDiscHandler.m | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 macosx/PcsxrDiscHandler.m (limited to 'macosx/PcsxrDiscHandler.m') diff --git a/macosx/PcsxrDiscHandler.m b/macosx/PcsxrDiscHandler.m new file mode 100644 index 00000000..16a9582f --- /dev/null +++ b/macosx/PcsxrDiscHandler.m @@ -0,0 +1,23 @@ +// +// PcsxrDiscHandler.m +// Pcsxr +// +// Created by Charles Betts on 12/11/11. +// Copyright (c) 2011 __MyCompanyName__. All rights reserved. +// + +#import "PcsxrDiscHandler.h" +#import "EmuThread.h" +#include "psxcommon.h" +#include "plugins.h" + +@implementation PcsxrDiscHandler + +- (BOOL)handleFile:(NSString *)theFile +{ + SetIsoFile([theFile fileSystemRepresentation]); + [EmuThread run]; + return YES; +} + +@end -- cgit v1.2.3