summaryrefslogtreecommitdiff
path: root/macosx/PcsxrController.m
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2014-01-01 21:20:40 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2014-01-01 21:20:40 +0000
commita05a3d11cf14b328bf16a748c9aa5f3c8cbc88d0 (patch)
tree8a93677c3e77f93e6d317b76203eb9b701ca312f /macosx/PcsxrController.m
parent618c6539e8755305dd7836cf95026c4611b819ce (diff)
downloadpcsxr-a05a3d11cf14b328bf16a748c9aa5f3c8cbc88d0.tar.gz
OS X:
Fixing a copy-paste error. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@88208 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/PcsxrController.m')
-rwxr-xr-xmacosx/PcsxrController.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/PcsxrController.m b/macosx/PcsxrController.m
index b798b8d1..5c526e52 100755
--- a/macosx/PcsxrController.m
+++ b/macosx/PcsxrController.m
@@ -918,7 +918,7 @@ otherblock();\
NSURL *biosDirPath = [NSURL fileURLWithPath:[fm stringWithFileSystemRepresentation:Config.BiosDir length:strlen(Config.BiosDir)] isDirectory:YES];
NSURL *biosPath = [biosDirPath URLByAppendingPathComponent:[filename lastPathComponent]];
if ([biosPath checkResourceIsReachableAndReturnError:NULL]) {
- NSAlert *alreadyThere = [NSAlert alertWithMessageText:NSLocalizedString(@"BIOS Already Exists", @"BIOS file already there.") defaultButton:nil alternateButton:nil otherButton:nil informativeTextWithFormat:NSLocalizedString(@"There already exists a BIOS file at \"%1$@\": not copying the file at \"%2$@\".\n\nIf you do want to use the BIOS file at \"%2$@\", delete the BIOS at \"%1$@\".", @"What to do"), [biosPath path], filename];
+ NSAlert *alreadyThere = [NSAlert alertWithMessageText:NSLocalizedString(@"BIOS Already Exists", @"BIOS file already there.") defaultButton:nil alternateButton:nil otherButton:nil informativeTextWithFormat:NSLocalizedString(@"There already exists a BIOS file at \"%1$@\": not moving the file at \"%2$@\".\n\nIf you do want to use the BIOS file at \"%2$@\", delete the BIOS at \"%1$@\".", @"What to do"), [biosPath path], filename];
alreadyThere.alertStyle = NSCriticalAlertStyle;
[alreadyThere runModal];
return NO;