diff options
| author | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2011-11-26 05:03:11 +0000 |
|---|---|---|
| committer | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2011-11-26 05:03:11 +0000 |
| commit | 47617238d350c1a3aa7b0727928b2d28f9f7a859 (patch) | |
| tree | 8f3cdd949cdd32d5a25b1a4a8a087a055b49c7bc /macosx/PcsxrMemoryObject.m | |
| parent | 5b664c684367676c028adf91c1b64acaf8d434ab (diff) | |
| download | pcsxr-47617238d350c1a3aa7b0727928b2d28f9f7a859.tar.gz | |
Fix a missing [super dealloc] call.
Fixing wrong bindings.
I still get wrong info (it says some memory slots are deleted when they're not).
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@72647 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/PcsxrMemoryObject.m')
| -rw-r--r-- | macosx/PcsxrMemoryObject.m | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/macosx/PcsxrMemoryObject.m b/macosx/PcsxrMemoryObject.m index c8165a24..7a55c1b0 100644 --- a/macosx/PcsxrMemoryObject.m +++ b/macosx/PcsxrMemoryObject.m @@ -22,6 +22,8 @@ [englishName release]; [sjisName release]; [memImage release]; + + [super dealloc]; } @end |
