summaryrefslogtreecommitdiff
path: root/macosx/PcsxrController.m
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/PcsxrController.m')
-rw-r--r--macosx/PcsxrController.m2
1 files changed, 2 insertions, 0 deletions
diff --git a/macosx/PcsxrController.m b/macosx/PcsxrController.m
index 5e67a4b4..b4170fde 100644
--- a/macosx/PcsxrController.m
+++ b/macosx/PcsxrController.m
@@ -46,6 +46,8 @@ static NSString *HandleBinCue(NSString *toHandle)
filePath.location = firstQuote.location + 1; //Don't include the quote symbol
filePath.length = (lastQuote.location + 4) - (firstQuote.location + 1 ); //Include the .bin but not the first quote symbol
temp2 = [temp1 URLByAppendingPathComponent:[cueFile substringWithRange:filePath]];
+ if (![[NSFileManager defaultManager] fileExistsAtPath:[temp2 path]])
+ goto badCue;
goto goodCue;