mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-20 17:08:03 -05:00
removal of the -1 case in the configure_input switch
this case is unneeded because no enumeration value can possibly correspond to it
This commit is contained in:
@ -17,7 +17,6 @@ static QString getKeyName(Qt::Key key_code) {
|
|||||||
case Qt::Key_Alt:
|
case Qt::Key_Alt:
|
||||||
return QObject::tr("Alt");
|
return QObject::tr("Alt");
|
||||||
case Qt::Key_Meta:
|
case Qt::Key_Meta:
|
||||||
case -1:
|
|
||||||
return "";
|
return "";
|
||||||
default:
|
default:
|
||||||
return QKeySequence(key_code).toString();
|
return QKeySequence(key_code).toString();
|
||||||
|
Reference in New Issue
Block a user