diff options
| author | assiduous <assiduous@diligentgraphics.com> | 2020-01-29 06:59:57 +0000 |
|---|---|---|
| committer | assiduous <assiduous@diligentgraphics.com> | 2020-01-29 06:59:57 +0000 |
| commit | 47ebe9b545d2efa9b60a735ee261d78eaa54aa57 (patch) | |
| tree | 87c7a295204d514ab214c33ab8306d1e4d414f55 /Graphics/GraphicsEngine | |
| parent | Reworked C interface to optimize inheritance handling (diff) | |
| download | DiligentCore-47ebe9b545d2efa9b60a735ee261d78eaa54aa57.tar.gz DiligentCore-47ebe9b545d2efa9b60a735ee261d78eaa54aa57.zip | |
Fixed a number of minor issues
Diffstat (limited to 'Graphics/GraphicsEngine')
| -rw-r--r-- | Graphics/GraphicsEngine/interface/LoadEngineDll.h | 2 |
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); |
