Update Android port

* src/android.c (struct android_event_queue): Don't make
unnecessarily volatile.
This commit is contained in:
Po Lu 2023-07-20 19:49:47 +08:00
parent b5121503e4
commit 353f90c758

View file

@ -306,7 +306,7 @@ struct android_event_queue
/* The number of events in the queue. If this is greater than 1024,
writing will block. */
volatile int num_events;
int num_events;
/* Circular queue of events. */
struct android_event_container events;