aboutsummaryrefslogtreecommitdiff
path: root/src/citra_qt/configure_input.cpp
diff options
context:
space:
mode:
authornoah the goodra <peterpan0413@live.com>2017-01-31 09:55:56 -0600
committernoah the goodra <peterpan0413@live.com>2017-01-31 09:55:56 -0600
commit6c41d87a9d2946cb6f81cd03e0785f998b0dd403 (patch)
tree90fcc9e76e29040701866e87e4d7f3d3f9f363dc /src/citra_qt/configure_input.cpp
parentd0bf7df5ba11f19314b5b08d264de79bce691a45 (diff)
removal of the -1 case in the configure_input switch
this case is unneeded because no enumeration value can possibly correspond to it
Diffstat (limited to 'src/citra_qt/configure_input.cpp')
-rw-r--r--src/citra_qt/configure_input.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/citra_qt/configure_input.cpp b/src/citra_qt/configure_input.cpp
index 3e6803b8ad..c29652f325 100644
--- a/src/citra_qt/configure_input.cpp
+++ b/src/citra_qt/configure_input.cpp
@@ -17,7 +17,6 @@ static QString getKeyName(Qt::Key key_code) {
case Qt::Key_Alt:
return QObject::tr("Alt");
case Qt::Key_Meta:
- case -1:
return "";
default:
return QKeySequence(key_code).toString();