diff --git a/src/main.rs b/src/main.rs index bc27ccd..651a617 100644 --- a/src/main.rs +++ b/src/main.rs @@ -259,15 +259,10 @@ fn main() { let buffer: Vec = vec![0; WIDTH * HEIGHT]; - let mut window = Window::new( - "Test - ESC to exit", - WIDTH, - HEIGHT, - WindowOptions::default(), - ) - .unwrap_or_else(|e| { - panic!("{}", e); - }); + let mut window = Window::new("Gameboy", WIDTH, HEIGHT, WindowOptions::default()) + .unwrap_or_else(|e| { + panic!("{}", e); + }); window.update_with_buffer(&buffer, WIDTH, HEIGHT).unwrap();