Update window title

This commit is contained in:
maik klein 2017-01-05 08:09:23 +01:00
parent 525a78f7c5
commit eead999bc4

View file

@ -236,7 +236,7 @@ impl ExampleBase {
pub fn new(window_width: u32, window_height: u32) -> Self { pub fn new(window_width: u32, window_height: u32) -> Self {
unsafe { unsafe {
let window = winit::WindowBuilder::new() let window = winit::WindowBuilder::new()
.with_title("A fantastic window!") .with_title("Ash - Example")
.with_dimensions(window_width, window_height) .with_dimensions(window_width, window_height)
.with_window_resize_callback(resize_callback) .with_window_resize_callback(resize_callback)
.build() .build()