summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Src/DynamicLibrary.cpp
diff options
context:
space:
mode:
authorJohn Peterson <jpeterson57@gmail.com>2009-01-26 01:14:04 +0000
committerJohn Peterson <jpeterson57@gmail.com>2009-01-26 01:14:04 +0000
commit3c4a73d5a65f40792b0b7dadd6a81ef5ed179c09 (patch)
treedad8e8de1c02e1e951ed796700c35d37b371880d /Source/Core/Common/Src/DynamicLibrary.cpp
parent8eeb1d02025eef549a935d1df6fe4ca0cbbaf9ca (diff)
Core and PluginManager: Fixed Stop and Start again, the video plugin needed to be completely reset
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2012 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/Common/Src/DynamicLibrary.cpp')
-rw-r--r--Source/Core/Common/Src/DynamicLibrary.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Src/DynamicLibrary.cpp b/Source/Core/Common/Src/DynamicLibrary.cpp
index 628cf5324b..1d18bef1e1 100644
--- a/Source/Core/Common/Src/DynamicLibrary.cpp
+++ b/Source/Core/Common/Src/DynamicLibrary.cpp
@@ -130,7 +130,7 @@ int DynamicLibrary::Unload()
}
#ifdef _WIN32
- Console::Print("FreeLibrary: %i\n", library);
+ Console::Print("FreeLibrary: %i\n", library_file.c_str());
retval = FreeLibrary(library);
#else
retval = dlclose(library)?0:1;