From a3745183d4de1977621eb4f1e81b5c19b9f01e7c Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Thu, 19 Nov 2015 16:47:16 +0200 Subject: [PATCH] 64-bit non-extension DLL load path. --- od-win32/win32.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; -- 2.47.3