summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Src/DynamicLibrary.cpp
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2008-12-17 16:24:03 +0000
committernakeee <nakeee@gmail.com>2008-12-17 16:24:03 +0000
commitfb3c13588bfd2f1a1c8b31e3d1eb482a590e8a26 (patch)
treec8f87cae8ae8e436419e7726ad29f5fccbd64544 /Source/Core/Common/Src/DynamicLibrary.cpp
parenteea2f0520b3b548bea52d9563fee68ebefb655c9 (diff)
compile fix for windows
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1565 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/Common/Src/DynamicLibrary.cpp')
-rw-r--r--Source/Core/Common/Src/DynamicLibrary.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/Common/Src/DynamicLibrary.cpp b/Source/Core/Common/Src/DynamicLibrary.cpp
index 537d048c20..63feb2de89 100644
--- a/Source/Core/Common/Src/DynamicLibrary.cpp
+++ b/Source/Core/Common/Src/DynamicLibrary.cpp
@@ -62,8 +62,9 @@ std::string GetLastErrorAsString()
errstr = tmp;
return errstr;
-}
#endif
+}
+
// ------------------------------------------------------------------
/* Loading means loading the dll with LoadLibrary() to get an instance to the dll.