Skip to content

Commit

Permalink
HidEnumerator: remove "USB" from debug messages
Browse files Browse the repository at this point in the history
HID devices can use USB or Bluetooth.
  • Loading branch information
Be-ing committed Jul 4, 2021
1 parent 5bc25c7 commit 6dd77b1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/controllers/hid/hidenumerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,16 +81,16 @@ QList<Controller*> HidEnumerator::queryDevices() {

if (!recognizeDevice(*device_info)) {
qInfo()
<< "Excluding USB HID device"
<< "Excluding HID device"
<< deviceInfo;
continue;
}
qInfo() << "Found USB HID device:"
qInfo() << "Found HID device:"
<< deviceInfo;

if (!deviceInfo.isValid()) {
qWarning() << "USB permissions problem or device error."
<< "Your account needs write access to USB HID controllers.";
qWarning() << "HID device permissions problem or device error."
<< "Your account needs write access to HID controllers.";
continue;
}

Expand Down

0 comments on commit 6dd77b1

Please sign in to comment.