mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-24 14:21:31 +11:00
Added mut so glutin can compile on nightly.
This commit is contained in:
parent
28355a66f0
commit
0d10dda72a
|
@ -193,7 +193,7 @@ impl<'a> Iterator for PollEventsIterator<'a> {
|
|||
ffi::KeyPress | ffi::KeyRelease => {
|
||||
use events::Event::{KeyboardInput, ReceivedCharacter};
|
||||
use events::ElementState::{Pressed, Released};
|
||||
let event: &mut ffi::XKeyEvent = unsafe { mem::transmute(&xev) };
|
||||
let event: &mut ffi::XKeyEvent = unsafe { mem::transmute(&mut xev) };
|
||||
|
||||
if event.type_ == ffi::KeyPress {
|
||||
let raw_ev: *mut ffi::XKeyEvent = event;
|
||||
|
|
Loading…
Reference in a new issue