summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmacosx/PcsxrController.m1
-rwxr-xr-xmacosx/PcsxrPlugin.m4
-rwxr-xr-xmacosx/main.m2
3 files changed, 1 insertions, 6 deletions
diff --git a/macosx/PcsxrController.m b/macosx/PcsxrController.m
index ac24e1d8..2e260049 100755
--- a/macosx/PcsxrController.m
+++ b/macosx/PcsxrController.m
@@ -587,7 +587,6 @@ otherblock();\
}
#ifdef DEBUG
if ([unknownOptions count]) {
- //As there doesn't seem to be a Cocoa/Objective-C method like this...
NSString *unknownString = [unknownOptions componentsJoinedByString:@" "];
NSLog(@"The following options weren't recognized by PCSX-R: %@. This may be due to extra arguments passed by the OS or debugger.", unknownString);
diff --git a/macosx/PcsxrPlugin.m b/macosx/PcsxrPlugin.m
index 38a76953..faaca580 100755
--- a/macosx/PcsxrPlugin.m
+++ b/macosx/PcsxrPlugin.m
@@ -347,8 +347,6 @@
// detach a new thread
[NSThread detachNewThreadSelector:@selector(runCommand:) toTarget:self
withObject:arg];
- //NOTE: the runCommand releases the arg command. Probably not the best way to do it...
- //This is not an issue with ARC (64-bit) code
}
- (void)configureAs:(int)aType
@@ -361,8 +359,6 @@
// detach a new thread
[NSThread detachNewThreadSelector:@selector(runCommand:) toTarget:self
withObject:arg];
- //NOTE: the runCommand releases the arg command. Probably not the best way to do it...
- //This is not an issue with ARC (64-bit) code
}
- (NSString *)displayVersion
diff --git a/macosx/main.m b/macosx/main.m
index 3858c588..9c6034ac 100755
--- a/macosx/main.m
+++ b/macosx/main.m
@@ -33,7 +33,7 @@ void PADhandleKey(int key);
int main(int argc, const char *argv[])
{
- if ( argc >= 2 && strncmp (argv[1], "-psn", 4) == 0 ) {
+ if (argc >= 2 && strncmp (argv[1], "-psn", 4) == 0 ) {
char parentdir[MAXPATHLEN];
char *c;