()
| 10 | static mut GAMEPAD_FD: RawFd = -1; |
| 11 | |
| 12 | fn engine() -> &'static mut EngineState { |
| 13 | unsafe { ENGINE.get_mut().expect("Engine not initialized") } |
| 14 | } |
| 15 | |
| 16 | /// Map X11 keysym to Bloom key code. |
| 17 | fn map_keycode(keysym: u32) -> usize { |
no test coverage detected