1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-07-07 00:04:57 +03:00

Mayaqua: remove all references to binaries with "_x64" and "_ia64" suffix

See the previous commit's message for details.
This commit is contained in:
Davide Beatrici
2020-07-27 07:25:00 +02:00
parent a3eb115b0a
commit 6a472d827a
4 changed files with 8 additions and 55 deletions

View File

@ -10112,11 +10112,11 @@ void InitWinUi(wchar_t *software_name, char *font, UINT fontsize)
{
if (Is64())
{
hDll = MsLoadLibraryAsDataFile(MsGetPenCoreDllFileName());
hDll = MsLoadLibraryAsDataFile(PENCORE_DLL_NAME);
}
else
{
hDll = MsLoadLibrary(MsGetPenCoreDllFileName());
hDll = MsLoadLibrary(PENCORE_DLL_NAME);
}
if (hDll == NULL)