mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
Update win_printversion() to handle Windows 8.1/Server 2012 R2.
git-svn-id: https://svn.eduke32.com/eduke32@3987 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
6ae675347b
commit
4a02ec7e9b
1 changed files with 3 additions and 0 deletions
|
@ -90,6 +90,9 @@ static void win_printversion(void)
|
|||
case 2:
|
||||
ver = osv.wProductType == VER_NT_WORKSTATION ? "8" : "Server 2012";
|
||||
break;
|
||||
case 3:
|
||||
ver = osv.wProductType == VER_NT_WORKSTATION ? "8.1" : "Server 2012 R2";
|
||||
break;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue