Fixed Wii AX sound, for real this time

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1169 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
John Peterson
2008-11-14 11:47:17 +00:00
parent 09e168beac
commit 2976f3f1e3
16 changed files with 111 additions and 74 deletions

View File

@ -59,7 +59,7 @@ std::string GetLastErrorAsString()
bool DynamicLibrary::Load(const char* filename)
{
if (!filename || strlen(filename) == 0)
{
{
LOG(MASTER_LOG, "Missing filename of dynamic library to load");
return false;
}
@ -85,7 +85,7 @@ bool DynamicLibrary::Load(const char* filename)
LOG(MASTER_LOG, "Error loading DLL %s: %s", filename, dlerror());
#else
printf("Error loading DLL %s: %s", filename, dlerror());
#endif
#endif
return false;
}
#endif