diff options
| author | 2017-01-31 09:55:56 -0600 | |
|---|---|---|
| committer | 2017-01-31 09:55:56 -0600 | |
| commit | 6c41d87a9d2946cb6f81cd03e0785f998b0dd403 (patch) | |
| tree | 90fcc9e76e29040701866e87e4d7f3d3f9f363dc /src | |
| parent | HLE/Applets: Stub Mint (eShop) Applet (#2463) (diff) | |
| download | yuzu-6c41d87a9d2946cb6f81cd03e0785f998b0dd403.tar.gz yuzu-6c41d87a9d2946cb6f81cd03e0785f998b0dd403.tar.xz yuzu-6c41d87a9d2946cb6f81cd03e0785f998b0dd403.zip | |
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')
| -rw-r--r-- | src/citra_qt/configure_input.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/citra_qt/configure_input.cpp b/src/citra_qt/configure_input.cpp index 3e6803b8a..c29652f32 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) { | |||
| 17 | case Qt::Key_Alt: | 17 | case Qt::Key_Alt: |
| 18 | return QObject::tr("Alt"); | 18 | return QObject::tr("Alt"); |
| 19 | case Qt::Key_Meta: | 19 | case Qt::Key_Meta: |
| 20 | case -1: | ||
| 21 | return ""; | 20 | return ""; |
| 22 | default: | 21 | default: |
| 23 | return QKeySequence(key_code).toString(); | 22 | return QKeySequence(key_code).toString(); |