Remove println call from Android's eventloop

This commit is contained in:
Max de Danschutter 2020-11-19 18:56:24 +01:00 committed by GitHub
parent 66859607a3
commit 1c38f113b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -175,7 +175,6 @@ impl<T: 'static> EventLoop<T> {
Some(EventSource::InputQueue) => {
if let Some(input_queue) = ndk_glue::input_queue().as_ref() {
while let Some(event) = input_queue.get_event() {
println!("event {:?}", event);
if let Some(event) = input_queue.pre_dispatch(event) {
let window_id = window::WindowId(WindowId);
let device_id = event::DeviceId(DeviceId);