From b3999b0598cef692b429a778b87b8bafddbc6d32 Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Mon, 6 Jun 2022 14:31:50 -0500 Subject: [PATCH] var --- src/pixie/images.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pixie/images.nim b/src/pixie/images.nim index c3e82fb..540bf46 100644 --- a/src/pixie/images.nim +++ b/src/pixie/images.nim @@ -63,7 +63,7 @@ proc dataIndex*(image: Image, x, y: int): int {.inline, raises: [].} = template unsafe*(src: Image): UnsafeImage = cast[UnsafeImage](src) -template `[]`*(view: UnsafeImage, x, y: int): ColorRGBX = +template `[]`*(view: UnsafeImage, x, y: int): var ColorRGBX = ## Gets a color from (x, y) coordinates. ## * No bounds checking * ## Make sure that x, y are in bounds.