From: Toni Wilen Date: Thu, 19 Nov 2015 14:47:16 +0000 (+0200) Subject: 64-bit non-extension DLL load path. X-Git-Tag: 3210~3 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=a3745183d4de1977621eb4f1e81b5c19b9f01e7c;p=francis%2Fwinuae.git 64-bit non-extension DLL load path. --- diff --git a/od-win32/win32.cpp b/od-win32/win32.cpp index 6a92b029..bf1fb703 100644 --- a/od-win32/win32.cpp +++ b/od-win32/win32.cpp @@ -2409,7 +2409,7 @@ struct winuae_lang langs[] = { LANG_UZBEK, _T("Uzbek") }, { LANG_VIETNAMESE, _T("Vietnamese") }, { LANG_ENGLISH, _T("default") }, - { 0x400, _T("guidll.dll")}, + { 0x400, _T("guidll.dll") }, { 0, NULL } }; static TCHAR *getlanguagename(DWORD id) @@ -6340,6 +6340,9 @@ HMODULE WIN32_LoadLibrary_2 (const TCHAR *name, int expand) _tcscat(p, _tcschr(name, '.')); } break; + case 5: + p = newname; + break; } if (!p) continue;