From 08eb28654a7ea2ebd04422ed41a267634f8cf94c Mon Sep 17 00:00:00 2001 From: Pairi Daiza Date: Mon, 12 Oct 2020 19:52:49 +0200 Subject: [PATCH] + add: Support for Windows 10 20H2 Version 2009 (Build 19042) --- src/Helpers.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Helpers.c b/src/Helpers.c index bf4c55574..9ec627466 100644 --- a/src/Helpers.c +++ b/src/Helpers.c @@ -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) {