mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-03 11:32:43 +01:00
removed unnecessary error message.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@99 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
e13b58b945
commit
c04011f117
@ -116,10 +116,10 @@ void* DynamicLibrary::Get(const char* funcname) const
|
|||||||
PanicAlert("Can't find function %s - Library not loaded.");
|
PanicAlert("Can't find function %s - Library not loaded.");
|
||||||
}
|
}
|
||||||
retval = GetProcAddress(library, funcname);
|
retval = GetProcAddress(library, funcname);
|
||||||
if (!retval)
|
//if (!retval)
|
||||||
{
|
//{
|
||||||
PanicAlert("Did not find function %s in library %s.", funcname, library_file.c_str());
|
//PanicAlert("Did not find function %s in library %s.", funcname, library_file.c_str());
|
||||||
}
|
//}
|
||||||
|
|
||||||
return(retval);
|
return(retval);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user