Skip to content

Commit

Permalink
support versions 8 to 15
Browse files Browse the repository at this point in the history
  • Loading branch information
oltolm committed Aug 10, 2022
1 parent 3ebd914 commit 946a399
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dxvk_cache_tool.nim
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ proc main(output: string, files: seq[string]): int =
config.version = header.version
config.entrySize = header.entrySize
writeLine(stdout, format("Detected state cache version $#", header.version))
doAssert(header.version == 8 or header.version == 9 or header.version == 10, "only versions 8-10 are supported, exiting")
doAssert(header.version >= 8 and header.version <= 15, "only versions 8-15 are supported, exiting")
writeLine(stdout, format("Merging $# ($#/$#)...", path, i+1, config.files.len))
var omitted = 0
var entriesLen = entries.len
Expand Down

0 comments on commit 946a399

Please sign in to comment.