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:
terminx 2013-08-06 23:52:39 +00:00
parent 6ae675347b
commit 4a02ec7e9b

View file

@ -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;
}