From 61850440ef1bfbfa64c9462ccbbd210443a7d4d5 Mon Sep 17 00:00:00 2001 From: "SND\\MaddTheSane_cp" Date: Sat, 26 Nov 2011 17:58:41 +0000 Subject: Fixed the improperly-labeled deleted display on blocks. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@72655 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- macosx/PcsxrMemCardController.m | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'macosx/PcsxrMemCardController.m') 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]; -- cgit v1.2.3