From f514f161b5d77985fac903f3c01394b212c41f89 Mon Sep 17 00:00:00 2001 From: nakeee Date: Sun, 28 Dec 2008 16:05:07 +0000 Subject: [PATCH] stop blamming SDL git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1704 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Common/Src/DynamicLibrary.cpp | 9 +-------- 1 file changed, 1 insertion(+), 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; }