summaryrefslogtreecommitdiff
path: root/src/sim/chunk.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/sim/chunk.rs')
-rw-r--r--src/sim/chunk.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/chunk.rs b/src/sim/chunk.rs
index 1980932..478af12 100644
--- a/src/sim/chunk.rs
+++ b/src/sim/chunk.rs
@@ -4,7 +4,7 @@ use crate::{
};
pub struct Chunk {
- pub cells: Box<[Cell; CELLS_IN_CHUNK as usize]>,
+ pub cells: Box<[Cell; CELLS_IN_CHUNK]>,
pub sleeping: bool,
pub needs_texture_update: bool,
}