Fix host reference

This commit is contained in:
Tim Visée
2017-12-29 22:46:58 +01:00
parent 2c37525b3c
commit 1669990f23

View File

@@ -88,7 +88,7 @@ fn start(host: &str, count: usize, image_path: &str) {
let size = (1920u32, 1080u32); let size = (1920u32, 1080u32);
// Create a new pixelflut canvas // Create a new pixelflut canvas
let canvas = PixCanvas::new(HOST, image_path, size, count); let canvas = PixCanvas::new(host, image_path, size, count);
// Sleep this thread // Sleep this thread
thread::sleep(Duration::new(10000000, 0)); thread::sleep(Duration::new(10000000, 0));