diff options
| author | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2013-08-21 23:51:37 +0000 |
|---|---|---|
| committer | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2013-08-21 23:51:37 +0000 |
| commit | ace54f5a93139b2fd9165b565868e805273b2039 (patch) | |
| tree | 16b55c9fc2e8b2c0ee2ab0c0edf5f59411b705e5 | |
| parent | 3480eebf5552abfc29d20ccfb8d78e04d5e342f2 (diff) | |
| download | pcsxr-ace54f5a93139b2fd9165b565868e805273b2039.tar.gz | |
Unloading bundles with Objective C classes is dangerous. Let's not unload the plug-in at all.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@86810 e17a0e51-4ae3-4d35-97c3-1a29b211df97
| -rwxr-xr-x | macosx/main.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/main.m b/macosx/main.m index 5aaf13f2..1ea2a6eb 100755 --- a/macosx/main.m +++ b/macosx/main.m @@ -194,7 +194,7 @@ const char *SysLibError() { } void SysCloseLibrary(void *lib) { - dlclose(lib); + //dlclose(lib); } // Called periodically from the emu thread |
