This commit is contained in:
Ryan Oldenburg 2022-06-14 17:05:13 -05:00
parent abf67489f1
commit fc0a59bbcb

View file

@ -386,7 +386,7 @@ proc decodeGifDimensions*(
result.width = data.readInt16(6).int
result.height = data.readInt16(8).int
proc newImage*(gif: Gif): Image {.raises: [].} =
proc newImage*(gif: Gif): Image {.raises: [PixieError].} =
gif.frames[0].copy()
when defined(release):