aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index 1e0870f..a59d3c3 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -89,7 +89,7 @@ fn main() {
let mut canvas = window.into_canvas().build().unwrap();
- let boxsize:i32=15;
+ let boxsize:i32=8;
let cols:i32=width as i32/boxsize;
let rows:i32=height as i32/boxsize;
@@ -123,6 +123,6 @@ fn main() {
}
// The rest of the game loop goes here...
- ::std::thread::sleep(Duration::new(0, 1_000_000_000u32 / 60));
+ //::std::thread::sleep(Duration::new(0, 1_000_000_000u32 / 60));
}
}