>= 0 for image dimensions

This commit is contained in:
Ryan Oldenburg 2021-01-30 20:45:39 -06:00
parent 7c2014ee88
commit 264801c9f8

View file

@ -16,8 +16,8 @@ when defined(release):
proc newImage*(width, height: int): Image =
## Creates a new image with the parameter dimensions.
if width < 0 or height < 0:
raise newException(PixieError, "Image width and height must be positive")
if width <= 0 or height <= 0:
raise newException(PixieError, "Image width and height must be > 0")
result = Image()
result.width = width