up zippy dep

This commit is contained in:
Ryan Oldenburg 2021-06-08 11:20:15 -05:00
parent eca8357991
commit c93726dd86
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ srcDir = "src"
requires "nim >= 1.2.6"
requires "vmath >= 1.0.8"
requires "chroma >= 0.2.5"
requires "zippy >= 0.3.5"
requires "zippy >= 0.5.12"
requires "flatty >= 0.1.3"
requires "nimsimd >= 1.0.0"
requires "bumpy >= 1.0.3"

View file

@ -113,7 +113,7 @@ proc decodeGif*(data: string): Image =
if bs.pos + bitSize.int > bs.data.len * 8: failInvalid()
var
# Read variable bits out of the table.
codeId = bs.readBits(bitSize.int).int
codeId = bs.readBits(bitSize).int
# Some time we need to carry over table information.
carryOver: seq[int]