>= 0 for image dimensions
This commit is contained in:
parent
7c2014ee88
commit
264801c9f8
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue