makepanda: Set default MSVC version to 14.3 (2022)

This commit is contained in:
rdb 2025-12-29 10:55:50 +01:00
parent c54c908d28
commit e918eff231
1 changed files with 1 additions and 1 deletions

View File

@ -310,7 +310,7 @@ def parseopts(args):
if GetTarget() == 'windows':
if not MSVC_VERSION:
print("No MSVC version specified. Defaulting to 14.1 (Visual Studio 2017).")
MSVC_VERSION = (14, 1)
MSVC_VERSION = (14, 3)
else:
try:
MSVC_VERSION = tuple(int(d) for d in MSVC_VERSION.split('.'))[:2]