summaryrefslogtreecommitdiff
path: root/src/config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.rs b/src/config.rs
index 2e656d4..8e8f7a1 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -1,6 +1,6 @@
pub const WINDOW_TITLE: &str = "pxs";
-pub const CHUNK_SIZE: u32 = 32;
+pub const CHUNK_SIZE: i32 = 32;
pub const CELLS_IN_CHUNK: usize = (CHUNK_SIZE * CHUNK_SIZE) as usize;
pub const CAMERA_MOVEMENT_SPEED: f32 = 10.0;