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
This commit is contained in:
John Peterson 2009-01-26 01:14:04 +00:00
parent 8eeb1d0202
commit 3c4a73d5a6
5 changed files with 18 additions and 1 deletions

View file

@ -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;