Skip to content

Commit

Permalink
Update desired d3dcompiler version.
Browse files Browse the repository at this point in the history
  • Loading branch information
john-preston committed Aug 29, 2022
1 parent ed89d82 commit d519018
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validate_d3d_compiler.py
Expand Up @@ -25,7 +25,7 @@ def error(*args, **kwargs):

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
Expand Down

0 comments on commit d519018

Please sign in to comment.