diff options
| author | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2011-11-26 17:58:41 +0000 |
|---|---|---|
| committer | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2011-11-26 17:58:41 +0000 |
| commit | 61850440ef1bfbfa64c9462ccbbd210443a7d4d5 (patch) | |
| tree | 2521f5e9eaf5de281b7fffe704c9a4212ab2326b /macosx/PcsxrMemCardController.m | |
| parent | 47617238d350c1a3aa7b0727928b2d28f9f7a859 (diff) | |
| download | pcsxr-61850440ef1bfbfa64c9462ccbbd210443a7d4d5.tar.gz | |
Fixed the improperly-labeled deleted display on blocks.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@72655 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/PcsxrMemCardController.m')
| -rw-r--r-- | macosx/PcsxrMemCardController.m | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/macosx/PcsxrMemCardController.m b/macosx/PcsxrMemCardController.m index 0aef7ee6..df04fb4b 100644 --- a/macosx/PcsxrMemCardController.m +++ b/macosx/PcsxrMemCardController.m @@ -140,13 +140,13 @@ static inline void CopyMemcardData(char *from, char *to, int *i, char *str, int if ((info.Flags & 0xF0) == 0xA0) { if ((info.Flags & 0xF) >= 1 && (info.Flags & 0xF) <= 3) { - ob.deleted = YES; + ob.notDeleted = NO; } else - ob.deleted = YES; + ob.notDeleted = NO; } else if ((info.Flags & 0xF0) == 0x50) - ob.deleted = NO; + ob.notDeleted = YES; else - ob.deleted = YES; + ob.notDeleted = NO; [newArray insertObject:ob atIndex:i]; [ob release]; |
