summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Src/DynamicLibrary.cpp
diff options
context:
space:
mode:
authorhrydgard <hrydgard@gmail.com>2008-07-29 23:32:57 +0000
committerhrydgard <hrydgard@gmail.com>2008-07-29 23:32:57 +0000
commitc04011f117a34621e1b4fb2c5b66f4ec2c20e9b8 (patch)
treea6cb4ce8f63d829cf895dfd18645b96e52447f70 /Source/Core/Common/Src/DynamicLibrary.cpp
parente13b58b9456fad64d50415bdcd9a7574790bd663 (diff)
removed unnecessary error message.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@99 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/Common/Src/DynamicLibrary.cpp')
-rw-r--r--Source/Core/Common/Src/DynamicLibrary.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/Common/Src/DynamicLibrary.cpp b/Source/Core/Common/Src/DynamicLibrary.cpp
index 92dec9064c..8097e16a2c 100644
--- a/Source/Core/Common/Src/DynamicLibrary.cpp
+++ b/Source/Core/Common/Src/DynamicLibrary.cpp
@@ -116,10 +116,10 @@ void* DynamicLibrary::Get(const char* funcname) const
PanicAlert("Can't find function %s - Library not loaded.");
}
retval = GetProcAddress(library, funcname);
- if (!retval)
- {
- PanicAlert("Did not find function %s in library %s.", funcname, library_file.c_str());
- }
+ //if (!retval)
+ //{
+ //PanicAlert("Did not find function %s in library %s.", funcname, library_file.c_str());
+ //}
return(retval);