mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-11 21:03:05 +08:00
+ add: Support for Windows 10 20H2 Version 2009 (Build 19042)
This commit is contained in:
parent
d7350bfc3d
commit
08eb28654a
@ -212,7 +212,10 @@ static void _GetTrueWindowsVersion()
|
||||
// ----------------------------------------------------------------------------
|
||||
static DWORD _Win10BuildToReleaseId(DWORD build)
|
||||
{
|
||||
if (build >= 19041) {
|
||||
if (build >= 19042) {
|
||||
return 2009;
|
||||
}
|
||||
else if (build >= 19041) {
|
||||
return 2004;
|
||||
}
|
||||
else if (build >= 18363) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user