Browse Source

Merge pull request #756 from eightyeight/fix_dll_loading

Load new DLL first so existing projects don't see odd behavior
Daniel Buckmaster 11 năm trước cách đây
mục cha
commit
e4f4305325
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Engine/source/main/main.cpp

+ 1 - 1
Engine/source/main/main.cpp

@@ -55,7 +55,7 @@ int PASCAL WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszCmdL
    HMODULE hGame = NULL;
    std::wstring dllName = std::wstring();
    // The file name is the same as this executable's name, plus a suffix.
-   const std::wstring dllSuffices[] = {L"", L" DLL"};
+   const std::wstring dllSuffices[] = {L" DLL", L""};
    const unsigned int numSuffices = sizeof(dllSuffices) / sizeof(std::wstring);
 
    for (unsigned int i = 0; i < numSuffices; i++)