feat: EXE launcher no longer reject Java 11 and later.

This commit is contained in:
huanghongxun
2021-05-24 21:39:16 +08:00
parent 2f17552b2c
commit 61597cb83d
6 changed files with 7 additions and 8 deletions

View File

@@ -77,7 +77,7 @@ bool FindFirstFileExists(LPCWSTR lpPath, DWORD dwFilter)
bool GetArch(bool & is64Bit)
{
#if _WIN64
isWindows64bit = true;
is64Bit = true;
return true;
#elif _WIN32
typedef BOOL(WINAPI *LPFN_ISWOW64PROCESS) (HANDLE, PBOOL);