Remove unnecessary set-to-wait in example

This commit is contained in:
Ryan Goldstein 2019-06-23 14:38:16 -07:00
parent b571362bf1
commit cf28751ae3

View file

@ -23,7 +23,7 @@ fn main() {
event: WindowEvent::CloseRequested,
..
} => *control_flow = ControlFlow::Exit,
_ => *control_flow = ControlFlow::Wait,
_ => ()
}
});
}