Fixed things some mroe

This commit is contained in:
2026-04-16 23:38:00 -05:00
parent f63186c691
commit 3424b1c75f
+1 -1
View File
@@ -172,7 +172,7 @@ pub fn SubMatrix(comptime T: type) type {
}
pub fn set(self: *@This(), loc: Point, val: T) !void {
if (loc.x >= self._mask.width or loc.y >= self._mask.width) {
if (loc.x >= self._mask.width or loc.y >= self._mask.height) {
return Error.OutOfBounds;
}