summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngine
diff options
context:
space:
mode:
Diffstat (limited to 'Graphics/GraphicsEngine')
-rw-r--r--Graphics/GraphicsEngine/interface/LoadEngineDll.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/GraphicsEngine/interface/LoadEngineDll.h b/Graphics/GraphicsEngine/interface/LoadEngineDll.h
index 9a65126e..833c05a7 100644
--- a/Graphics/GraphicsEngine/interface/LoadEngineDll.h
+++ b/Graphics/GraphicsEngine/interface/LoadEngineDll.h
@@ -66,7 +66,7 @@ inline FARPROC LoadEngineDll(const char* EngineName, const char* GetFactoryFuncN
const char* Conf = "r";
#endif
- sprintf_s(LibName, StringBufferSize, "%s%s%s.dll", EngineName, Conf, Arch);
+ sprintf_s(LibName, StringBufferSize, "%s%s%s.dll", EngineName, Arch, Conf);
#if PLATFORM_WIN32
hModule = LoadLibraryA(LibName);