From 669b4cc69f3b98bcfb0d36fdf6449aa62891dae4 Mon Sep 17 00:00:00 2001 From: Fyren Date: Fri, 28 Aug 2009 02:44:30 -0700 Subject: [PATCH] Fix extension filename lookup --- core/ExtensionSys.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/ExtensionSys.cpp b/core/ExtensionSys.cpp index 6a9b7282..0c0c8eb6 100644 --- a/core/ExtensionSys.cpp +++ b/core/ExtensionSys.cpp @@ -590,7 +590,7 @@ IExtension *CExtensionManager::FindExtensionByFile(const char *file) for (iter=m_Libs.begin(); iter!=m_Libs.end(); iter++) { pExt = (*iter); - if (pExt->IsSameFile(file)) + if (pExt->IsSameFile(lookup)) { return pExt; }