Updat error message

This commit is contained in:
Hanno Braun 2024-10-30 02:38:18 +01:00
parent 4fafacd01b
commit 63b921fc3f

View File

@ -29,7 +29,7 @@ impl ApplicationHandler for App {
let (window, renderer) = match init(event_loop) {
Ok(ok) => ok,
Err(err) => {
eprintln!("Failed to create window: `{err:?}`");
eprintln!("Initialization error: `{err:?}`");
event_loop.exit();
return;
}