mirror of
https://github.com/italicsjenga/rust_minifb.git
synced 2024-12-23 11:21:30 +11:00
Fix Key::RightBracket not working on POSIX (#222)
There was a typo in the mappings, right bracket didn't work.
This commit is contained in:
parent
efbe6a1c71
commit
a3852bab8a
|
@ -1117,7 +1117,7 @@ impl Window {
|
|||
XK_bracketleft => Key::LeftBracket,
|
||||
XK_minus => Key::Minus,
|
||||
XK_period => Key::Period,
|
||||
XK_braceright => Key::RightBracket,
|
||||
XK_bracketright => Key::RightBracket,
|
||||
XK_semicolon => Key::Semicolon,
|
||||
XK_slash => Key::Slash,
|
||||
XK_space => Key::Space,
|
||||
|
|
Loading…
Reference in a new issue