diff options
Diffstat (limited to 'src/common.rs')
-rw-r--r-- | src/common.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common.rs b/src/common.rs index 3e606b1..6cc5e83 100644 --- a/src/common.rs +++ b/src/common.rs @@ -142,5 +142,6 @@ impl Default for Pixel { } } -pub type DisplayBuffer = [[Pixel; IMG_WIDTH]; IMG_HEIGHT]; +// pub type DisplayBuffer = [[Pixel; IMG_WIDTH]; IMG_HEIGHT]; +pub type DisplayBuffer = Vec<Vec<Pixel>>; |