summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-12-02 20:27:11 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-12-02 20:27:11 +0000
commit81da7f45b488bd774fdf51763a5d3ef094d8e368 (patch)
tree91e61c48f216fb11d805cb9b52b4b1e6d375b060
parent6c98dfb4474f7e02665f1cc2ea23d02997bdf200 (diff)
downloadpcsxr-81da7f45b488bd774fdf51763a5d3ef094d8e368.tar.gz
Removing old, outdated comments.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@88034 e17a0e51-4ae3-4d35-97c3-1a29b211df97
-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;