From 13db762a3338fc3a66330390ab68c9fa07b10d22 Mon Sep 17 00:00:00 2001 From: rdb Date: Sun, 28 Nov 2021 13:56:21 +0100 Subject: [PATCH] makepanda: Add missing version of Windows 10 SDK --- makepanda/makepandacore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makepanda/makepandacore.py b/makepanda/makepandacore.py index b82b840027..4e03d3c2e2 100644 --- a/makepanda/makepandacore.py +++ b/makepanda/makepandacore.py @@ -2896,7 +2896,7 @@ def SetupVisualStudioEnviron(): elif not win_kit.endswith('\\'): win_kit += '\\' - for vnum in 10150, 10240, 10586, 14393, 15063, 16299, 17134, 17763, 18362: + for vnum in 10150, 10240, 10586, 14393, 15063, 16299, 17134, 17763, 18362, 19041: version = "10.0.{0}.0".format(vnum) if os.path.isfile(win_kit + "Include\\" + version + "\\ucrt\\assert.h"): print("Using Universal CRT %s" % (version))