Просмотр исходного кода

removal of the -1 case in the configure_input switch

this case is unneeded because no enumeration value can possibly correspond to it
noah the goodra 9 лет назад
Родитель
Сommit
6c41d87a9d
1 измененных файлов с 0 добавлено и 1 удалено
  1. 0 1
      src/citra_qt/configure_input.cpp

+ 0 - 1
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();