summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Src/DynamicLibrary.cpp
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2008-12-28 16:05:07 +0000
committernakeee <nakeee@gmail.com>2008-12-28 16:05:07 +0000
commitf514f161b5d77985fac903f3c01394b212c41f89 (patch)
treeb7f3ae456efa3f2f5979d07a1dd43d22ec673a56 /Source/Core/Common/Src/DynamicLibrary.cpp
parent20b6438b4b0cfc2ce127f730506519fdff2de772 (diff)
stop blamming SDL
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1704 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/Common/Src/DynamicLibrary.cpp')
-rw-r--r--Source/Core/Common/Src/DynamicLibrary.cpp9
1 files changed, 1 insertions, 8 deletions
diff --git a/Source/Core/Common/Src/DynamicLibrary.cpp b/Source/Core/Common/Src/DynamicLibrary.cpp
index b3c7faf728..418d015b5b 100644
--- a/Source/Core/Common/Src/DynamicLibrary.cpp
+++ b/Source/Core/Common/Src/DynamicLibrary.cpp
@@ -93,14 +93,7 @@ int DynamicLibrary::Load(const char* filename)
if (!library)
{
LOG(MASTER_LOG, "Error loading DLL %s: %s", filename, GetLastErrorAsString().c_str());
- if (File::Exists(filename))
- {
- PanicAlert("Error loading DLL %s: %s\n\nAre you missing SDL.DLL or another file that this plugin may depend on?", filename, GetLastErrorAsString().c_str());
- }
- else
- {
- PanicAlert("Error loading DLL %s: %s\n", filename, GetLastErrorAsString().c_str());
- }
+ PanicAlert("Error loading DLL %s: %s\n", filename, GetLastErrorAsString().c_str());
return 0;
}