diff options
| author | Kai Stevenson <kai@kaistevenson.com> | 2026-08-15 14:17:28 -0700 |
|---|---|---|
| committer | Kai Stevenson <kai@kaistevenson.com> | 2026-08-15 14:17:28 -0700 |
| commit | c94749cc88080ef7fef7b285f9072ea26d18e1eb (patch) | |
| tree | ba20a6e1fe918934c94a4e5c3f7370d6c6ce97d8 /src/config.rs | |
| parent | b510f5fcf5335c5e26d65ca96d7ec16c2f050f5d (diff) | |
wip, working with native resolution
Diffstat (limited to 'src/config.rs')
| -rw-r--r-- | src/config.rs | 2 |
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; |
