From 611182f4aeeed4aecf8c10f5ac1d8eb2f5b5b2a8 Mon Sep 17 00:00:00 2001 From: "SND\\MaddTheSane_cp" Date: Fri, 5 Jul 2013 11:35:09 +0000 Subject: Grouping similar classes in Xcode. Implement the Instrument build phase, for when your profile with Instruments. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@85842 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- macosx/ConfigurationController.m | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'macosx/ConfigurationController.m') diff --git a/macosx/ConfigurationController.m b/macosx/ConfigurationController.m index 1cf18dbd..b3f5f5c6 100755 --- a/macosx/ConfigurationController.m +++ b/macosx/ConfigurationController.m @@ -75,8 +75,11 @@ NSString *const memCardChangeNumberKey = @"PcsxrMemoryCardThatChangedKey"; NSOpenPanel *openDlg = RETAINOBJ([NSOpenPanel openPanel]); NSString *path; - if (tag == 1) { mcd = Config.Mcd1; } - else { mcd = Config.Mcd2; } + if (tag == 1) { + mcd = Config.Mcd1; + } else { + mcd = Config.Mcd2; + } [openDlg setCanChooseFiles:YES]; [openDlg setCanChooseDirectories:NO]; @@ -103,8 +106,11 @@ NSString *const memCardChangeNumberKey = @"PcsxrMemoryCardThatChangedKey"; NSSavePanel *openDlg = RETAINOBJ([NSSavePanel savePanel]); NSString *path; - if (tag == 1) { mcd = Config.Mcd1; } - else { mcd = Config.Mcd2; } + if (tag == 1) { + mcd = Config.Mcd1; + } else { + mcd = Config.Mcd2; + } path = [[NSFileManager defaultManager] stringWithFileSystemRepresentation:mcd length:strlen(mcd)]; -- cgit v1.2.3