diff --git a/Machines/Electron/Keyboard.cpp b/Machines/Electron/Keyboard.cpp index 381e07b40..12da6d50c 100644 --- a/Machines/Electron/Keyboard.cpp +++ b/Machines/Electron/Keyboard.cpp @@ -42,7 +42,7 @@ uint16_t KeyboardMapper::mapped_key_for_key(Inputs::Keyboard::Key key) { BIND(LeftShift, KeyShift); BIND(RightShift, KeyShift); BIND(Hyphen, KeyMinus); - BIND(Delete, KeyDelete); + BIND(Delete, KeyDelete); BIND(BackSpace, KeyDelete); BIND(Enter, KeyReturn); BIND(KeyPadEnter, KeyReturn); BIND(KeyPad0, Key0); BIND(KeyPad1, Key1); BIND(KeyPad2, Key2); BIND(KeyPad3, Key3); BIND(KeyPad4, Key4);