mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[ROSAPPS][GETTYPE] Fix a copy-paste-issue when checking for Win2000 CORE-16073
This commit is contained in:
parent
adceb3807e
commit
0d20e8988d
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ GetBasicInfo(LPOSVERSIONINFOEX osvi, TCHAR * HostName, TCHAR * OSName, TCHAR * V
|
|||
}
|
||||
else if(osvi->dwMajorVersion == 5)
|
||||
{
|
||||
if(osvi->dwMajorVersion == 0)
|
||||
if(osvi->dwMinorVersion == 0)
|
||||
{
|
||||
_tcscpy(OSName, _T("Microsoft Windows 2000 "));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue