From 3c4a73d5a65f40792b0b7dadd6a81ef5ed179c09 Mon Sep 17 00:00:00 2001 From: John Peterson Date: Mon, 26 Jan 2009 01:14:04 +0000 Subject: 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 --- Source/Core/Common/Src/DynamicLibrary.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/Common/Src/DynamicLibrary.cpp') 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; -- cgit v1.2.3