mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-02-20 19:02:23 +00:00
Add a missing brace twisting the logic of the Windows XP check
This commit is contained in:
parent
16e57ede33
commit
6c2f97927e
1 changed files with 2 additions and 2 deletions
|
@ -204,9 +204,9 @@ Sys_Init(void)
|
|||
limit Yamagi Quake II to Windows XP and
|
||||
above. Testing older version would be a
|
||||
PITA. */
|
||||
if (!(vinfo.dwMajorVersion > 5) ||
|
||||
if (!((vinfo.dwMajorVersion > 5) ||
|
||||
((vinfo.dwMajorVersion == 5) &&
|
||||
(vinfo.dwMinorVersion >= 1)))
|
||||
(vinfo.dwMinorVersion >= 1))))
|
||||
{
|
||||
Sys_Error("Yamagi Quake II needs Windows XP or higher!\n");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue