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