mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-13 07:57:52 +00:00
- fixed: stats checker was not actually checking if it was being run in WOW64 mode
This commit is contained in:
parent
251f0c8459
commit
d83456e9cc
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ static int GetOSVersion()
|
||||||
if (sizeof(void*) == 4) // 32 bit
|
if (sizeof(void*) == 4) // 32 bit
|
||||||
{
|
{
|
||||||
BOOL res;
|
BOOL res;
|
||||||
if (IsWow64Process(GetCurrentProcess(), &res))
|
if (IsWow64Process(GetCurrentProcess(), &res) && res)
|
||||||
{
|
{
|
||||||
return 6;
|
return 6;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue