From d5190185f74d8f76e610caeb6e45642fca2c177f Mon Sep 17 00:00:00 2001 From: John Preston Date: Mon, 29 Aug 2022 09:11:17 +0400 Subject: [PATCH] Update desired d3dcompiler version. --- validate_d3d_compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validate_d3d_compiler.py b/validate_d3d_compiler.py index 60747f6..40edce9 100644 --- a/validate_d3d_compiler.py +++ b/validate_d3d_compiler.py @@ -25,7 +25,7 @@ if not os.path.exists(inputPath): info = GetFileVersionInfo(inputPath, '\\') version = [ info['FileVersionMS'] // 65536, info['FileVersionMS'] % 65536, info['FileVersionLS'] // 65536, info['FileVersionLS'] % 65536 ] -if (version != [10, 0, 22000, 194]): +if (version != [10, 0, 22000, 832]): error('Bad "d3dcompiler_47.dll" version: ' + '.'.join(str(x) for x in version)) bufferSize = 1024 * 1024