File tree Expand file tree Collapse file tree 1 file changed +2
-11
lines changed Expand file tree Collapse file tree 1 file changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -67,13 +67,6 @@ namespace nsyshid::backend::windows
67
67
device->m_productId );
68
68
}
69
69
}
70
- else
71
- {
72
- cemuLog_log (LogType::Force,
73
- " nsyshid::BackendWindowsHID: device not on whitelist: {:04x}:{:04x}" ,
74
- device->m_vendorId ,
75
- device->m_productId );
76
- }
77
70
}
78
71
CloseHandle (hHIDDevice);
79
72
}
@@ -125,14 +118,12 @@ namespace nsyshid::backend::windows
125
118
}
126
119
if (maxPacketInputLength <= 0 || maxPacketInputLength >= 0xF000 )
127
120
{
128
- cemuLog_log (LogType::Force, " HID: Input packet length not available or out of range (length = {})" ,
129
- maxPacketInputLength);
121
+ cemuLog_logDebug (LogType::Force, " HID: Input packet length not available or out of range (length = {})" , maxPacketInputLength);
130
122
maxPacketInputLength = 0x20 ;
131
123
}
132
124
if (maxPacketOutputLength <= 0 || maxPacketOutputLength >= 0xF000 )
133
125
{
134
- cemuLog_log (LogType::Force, " HID: Output packet length not available or out of range (length = {})" ,
135
- maxPacketOutputLength);
126
+ cemuLog_logDebug (LogType::Force, " HID: Output packet length not available or out of range (length = {})" , maxPacketOutputLength);
136
127
maxPacketOutputLength = 0x20 ;
137
128
}
138
129
You can’t perform that action at this time.
0 commit comments