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, event: WindowEvent::CloseRequested,
.. ..
} => *control_flow = ControlFlow::Exit, } => *control_flow = ControlFlow::Exit,
_ => *control_flow = ControlFlow::Wait, _ => ()
} }
}); });
} }