summaryrefslogtreecommitdiff
path: root/macosx/PcsxrMemoryObject.m
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-07-11 00:03:19 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-07-11 00:03:19 +0000
commit04f58e9cbc7396f7a5c9b1de2a9a4640540f7818 (patch)
tree0babc47fbb3d2b752fe97da189fc2efb012d3587 /macosx/PcsxrMemoryObject.m
parentbde1f035c1b045f1ed3b678b5545d1de8fb5cd85 (diff)
downloadpcsxr-04f58e9cbc7396f7a5c9b1de2a9a4640540f7818.tar.gz
Revert some SysPrintfs in OS X to NSLogs.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@85963 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/PcsxrMemoryObject.m')
-rwxr-xr-xmacosx/PcsxrMemoryObject.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/PcsxrMemoryObject.m b/macosx/PcsxrMemoryObject.m
index ec063ec9..b5414e38 100755
--- a/macosx/PcsxrMemoryObject.m
+++ b/macosx/PcsxrMemoryObject.m
@@ -147,7 +147,7 @@ static NSString *MemLabelEndLink;
return memFlagFree;
//Xcode complains unless we do this...
- SysPrintf("Unknown flag %x\n", blockFlags);
+ NSLog(@"Unknown flag %x", blockFlags);
return memFlagFree;
}
@@ -169,7 +169,7 @@ static NSString *MemLabelEndLink;
if ([englishName isEqualToString:sjisName]) {
#if 0
if (![englishName isEqualToString:@""])
- SysPrintf("English name and sjis name are the same: %s. Replacing the sjis string with the English string.\n", [englishName UTF8String]);
+ NSLog(@"English name and sjis name are the same: %s. Replacing the sjis string with the English string.", [englishName UTF8String]);
#endif
self.sjisName = self.englishName;
}