diff --git a/stepmania/Themes/default/Languages/en.ini b/stepmania/Themes/default/Languages/en.ini index 91273085f5..82ceda4f57 100644 --- a/stepmania/Themes/default/Languages/en.ini +++ b/stepmania/Themes/default/Languages/en.ini @@ -1579,6 +1579,7 @@ Insert=Insert Delete=Delete PgUp=PgUp PgDn=PgDn +Backslash=Backslash [EditHelpDescription] Move cursor=Move cursor diff --git a/stepmania/src/RageInputDevice.cpp b/stepmania/src/RageInputDevice.cpp index 9bd9b4efd4..179c47d817 100644 --- a/stepmania/src/RageInputDevice.cpp +++ b/stepmania/src/RageInputDevice.cpp @@ -159,6 +159,7 @@ static LocalizedString INSERT ( "DeviceButton", "Insert" ); static LocalizedString DELETE ( "DeviceButton", "Delete" ); static LocalizedString PGUP ( "DeviceButton", "PgUp" ); static LocalizedString PGDN ( "DeviceButton", "PgDn" ); +static LocalizedString BACKSLASH ( "DeviceButton", "Backslash" ); RString DeviceButtonToLocalizedString( DeviceButton key ) { @@ -176,6 +177,7 @@ RString DeviceButtonToLocalizedString( DeviceButton key ) case KEY_DEL: return DELETE.GetValue(); case KEY_PGUP: return PGUP.GetValue(); case KEY_PGDN: return PGDN.GetValue(); + case KEY_BACKSLASH: return BACKSLASH.GetValue(); default: return Capitalize( DeviceButtonToString(key) ); } }