web: Add key code for NumpadEnter

This commit is contained in:
CUB3D 2023-01-18 18:28:26 +00:00 committed by Aaron Hill
parent f559fe0077
commit 56fd9adbf9
1 changed files with 1 additions and 0 deletions

View File

@ -1503,6 +1503,7 @@ fn web_to_ruffle_key_code(key_code: &str) -> KeyCode {
"NumpadSubtract" => KeyCode::NumpadMinus,
"NumpadDecimal" => KeyCode::NumpadPeriod,
"NumpadDivide" => KeyCode::NumpadSlash,
"NumpadEnter" => KeyCode::Return,
"PageUp" => KeyCode::PgUp,
"PageDown" => KeyCode::PgDown,
"End" => KeyCode::End,