From bb0d6c2e806ad986439e092233cbfcc78093a722 Mon Sep 17 00:00:00 2001 From: nick black Date: Sat, 10 Apr 2021 11:10:56 -0400 Subject: [PATCH] [rust] update fullsize_pixel_without_plane() --- rust/src/visual.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/src/visual.rs b/rust/src/visual.rs index 6bcf49f7f..4b43461f3 100644 --- a/rust/src/visual.rs +++ b/rust/src/visual.rs @@ -160,7 +160,7 @@ impl NcVisualOptions { } pub fn fullsize_pixel_without_plane(y: NcDim, x: NcDim, leny: NcDim, lenx: NcDim) -> Self { - Self::without_plane(y, x, 0, 0, leny, lenx, NCBLIT_PIXEL, 0) + Self::without_plane(y, x, 0, 0, leny, lenx, NCBLIT_PIXEL, 0, 0) } }