summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index bc616ca..10bea68 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -37,6 +37,7 @@ struct Config {
brush_material: MaterialId,
dropper_material: MaterialId,
use_threading: bool,
+ cells_render: bool,
debug_render: bool,
debug_render_mode: DebugRenderMode,
}
@@ -265,7 +266,8 @@ impl Default for App {
brush_radius: 10.0,
brush_material: MaterialId::Sand,
dropper_material: MaterialId::Wood,
- debug_render: true,
+ cells_render: true,
+ debug_render: false,
debug_render_mode: DebugRenderMode::default(),
},
diagnostics: Diagnostics {