Merge pull request #7807 from german77/moar-buttons

input_common: Add home and hard touch press buttons to UDP controllers
This commit is contained in:
bunnei
2022-02-01 22:37:13 -07:00
committed by GitHub
4 changed files with 22 additions and 3 deletions

View File

@ -102,6 +102,10 @@ QString GetButtonName(Common::Input::ButtonNames button_name) {
return QObject::tr("Share");
case Common::Input::ButtonNames::Options:
return QObject::tr("Options");
case Common::Input::ButtonNames::Home:
return QObject::tr("Home");
case Common::Input::ButtonNames::Touch:
return QObject::tr("Touch");
case Common::Input::ButtonNames::ButtonMouseWheel:
return QObject::tr("Wheel", "Indicates the mouse wheel");
case Common::Input::ButtonNames::ButtonBackward: