1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-03 11:30:02 +00:00

Removes mapping of the equals key to break.

... because I keep pressing it by accident.
This commit is contained in:
Thomas Harte 2019-02-28 21:47:12 -05:00
parent fc21fbd1f1
commit 3862a93ff9

View File

@ -31,7 +31,6 @@ uint16_t KeyboardMapper::mapped_key_for_key(Inputs::Keyboard::Key key) {
BIND(Quote, KeyColon);
BIND(Escape, KeyEscape);
BIND(Equals, KeyBreak);
BIND(F12, KeyBreak);
BIND(Left, KeyLeft); BIND(Right, KeyRight); BIND(Up, KeyUp); BIND(Down, KeyDown);