diff options
| -rwxr-xr-x | macosx/ConfigurationController.h | 2 | ||||
| -rw-r--r-- | macosx/LaunchArg.m | 2 | ||||
| -rw-r--r-- | macosx/PcsxrMemCardArray.h | 1 | ||||
| -rwxr-xr-x | macosx/PluginList.m | 1 |
4 files changed, 3 insertions, 3 deletions
diff --git a/macosx/ConfigurationController.h b/macosx/ConfigurationController.h index d9679a05..90547816 100755 --- a/macosx/ConfigurationController.h +++ b/macosx/ConfigurationController.h @@ -48,7 +48,7 @@ extern NSString *const memCardChangeNumberKey; - (IBAction)setVideoType:(id)sender; - (NSString *)keyForSender:(id)sender; -+ (void)setMemoryCard:(int)theCard toPath:(NSString *)theFile DEPRECATED_ATTRIBUTE; ++ (void)setMemoryCard:(int)theCard toPath:(NSString *)theFile; + (void)setMemoryCard:(int)theCard toURL:(NSURL *)theURL; + (void)mcdNewClicked:(id)sender; diff --git a/macosx/LaunchArg.m b/macosx/LaunchArg.m index 4923cc02..5af89cf3 100644 --- a/macosx/LaunchArg.m +++ b/macosx/LaunchArg.m @@ -27,7 +27,7 @@ if (_theBlock == theBlock) { return; } - dispatch_block_t tmpBlock = _theBlock + dispatch_block_t tmpBlock = _theBlock; _theBlock = [theBlock copy]; [tmpBlock release]; #endif diff --git a/macosx/PcsxrMemCardArray.h b/macosx/PcsxrMemCardArray.h index 87dcbec7..0ace4f2d 100644 --- a/macosx/PcsxrMemCardArray.h +++ b/macosx/PcsxrMemCardArray.h @@ -14,7 +14,6 @@ @private NSArray *rawArray; int cardNumber; - NSURL *fileURL; } - (id)initWithMemoryCardNumber:(int)carNum; diff --git a/macosx/PluginList.m b/macosx/PluginList.m index 944a3c6c..621e7f3c 100755 --- a/macosx/PluginList.m +++ b/macosx/PluginList.m @@ -235,6 +235,7 @@ const static int typeList[] = {PSE_LT_GPU, PSE_LT_SPU, PSE_LT_CDR, PSE_LT_PAD, P // stop the old plugin and start the new one if (pluginPtr) { [pluginPtr shutdownAs:type]; + //NOTE: We can ignore Clang's "Incorrect Decrement" here RELEASEOBJ(pluginPtr); } |
