diff options
| author | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2014-07-07 04:20:56 +0000 |
|---|---|---|
| committer | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2014-07-07 04:20:56 +0000 |
| commit | 3c2929ba9056bbbcfa5dea1ed67baeaa2ffe629f (patch) | |
| tree | 04e565ee8f2eb34f5d42d7abd046bd411846565b | |
| parent | 8b74abbcc40d257904b6f04778a88c08a04baeb9 (diff) | |
| download | pcsxr-3c2929ba9056bbbcfa5dea1ed67baeaa2ffe629f.tar.gz | |
OS X: We don’t need to link to CoreData.
Fix improper import/include preprocessor on the importer.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@90896 e17a0e51-4ae3-4d35-97c3-1a29b211df97
| -rw-r--r-- | macosx/Pcsxr.xcodeproj/project.pbxproj | 3 | ||||
| -rw-r--r-- | macosx/Psx-Memcard/GetMetadataForFile.m | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/macosx/Pcsxr.xcodeproj/project.pbxproj b/macosx/Pcsxr.xcodeproj/project.pbxproj index bfb98828..34f69039 100644 --- a/macosx/Pcsxr.xcodeproj/project.pbxproj +++ b/macosx/Pcsxr.xcodeproj/project.pbxproj @@ -172,7 +172,6 @@ 551A77E71786A4DD0052D185 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A76AC178693C60052D185 /* Carbon.framework */; }; 5525BC5E19421A760018AF2F /* CoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A76AF178693D60052D185 /* CoreServices.framework */; }; 5525BC5F19421A760018AF2F /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A76B2178693EA0052D185 /* CoreFoundation.framework */; }; - 5525BC6019421A760018AF2F /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A74A217868B110052D185 /* CoreData.framework */; }; 5525BC6119421A760018AF2F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A74A317868B110052D185 /* Foundation.framework */; }; 5525BC6719421A760018AF2F /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 5525BC6519421A760018AF2F /* InfoPlist.strings */; }; 5525BC6919421A760018AF2F /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = 5525BC6819421A760018AF2F /* main.c */; }; @@ -1001,7 +1000,6 @@ buildActionMask = 2147483647; files = ( 5525BC5F19421A760018AF2F /* CoreFoundation.framework in Frameworks */, - 5525BC6019421A760018AF2F /* CoreData.framework in Frameworks */, 5525BC5E19421A760018AF2F /* CoreServices.framework in Frameworks */, 5525BC6119421A760018AF2F /* Foundation.framework in Frameworks */, ); @@ -4016,6 +4014,7 @@ 5525BC7419421A760018AF2F /* Instrument */, ); defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; }; 55534AFD18183BFB006D6BCB /* Build configuration list for PBXNativeTarget "updateInfoPlist" */ = { isa = XCConfigurationList; diff --git a/macosx/Psx-Memcard/GetMetadataForFile.m b/macosx/Psx-Memcard/GetMetadataForFile.m index 19e00cc0..bfb46ee0 100644 --- a/macosx/Psx-Memcard/GetMetadataForFile.m +++ b/macosx/Psx-Memcard/GetMetadataForFile.m @@ -9,7 +9,7 @@ #include <CoreFoundation/CoreFoundation.h> #import <Foundation/Foundation.h> #include "GetMetadataForFile.h" -#include "PcsxrMemoryObject.h" +#import "PcsxrMemoryObject.h" #define MAX_MEMCARD_BLOCKS 15 #define kPCSXRSaveNames @"com_codeplex_pcsxr_memcard_savenames" |
