From 6c41d87a9d2946cb6f81cd03e0785f998b0dd403 Mon Sep 17 00:00:00 2001
From: noah the goodra <peterpan0413@live.com>
Date: Tue, 31 Jan 2017 09:55:56 -0600
Subject: [PATCH] removal of the -1 case in the configure_input switch

this case is unneeded because no enumeration value can possibly correspond to it
---
 src/citra_qt/configure_input.cpp | 1 -
 1 file changed, 1 deletion(-)

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();