Fix compile error in xbuild-target

Signed-off-by: John Nunley <dev@notgull.net>
This commit is contained in:
John Nunley
2023-09-10 13:54:46 -07:00
parent 8671481db4
commit 0c4e725692
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
fn main() {
winit::event_loop::EventLoop::new()
.unwrap()
.run(|_, _, _| todo!())
.run(|_, _| todo!())
.ok();
}