Correct error in hidCaptureReportTime

This commit is contained in:
Angel Cascarino
2021-12-08 11:14:52 +00:00
parent fac0542920
commit 6dfc934d36

View File

@@ -143,7 +143,7 @@ void hidCaptureReportTime( const unsigned id, const unsigned time )
{
for( size_t idx = 0U; idx < HID_REPORT_COUNT; ++idx ) {
if( id == hidGetElementReportId( hidReports[ idx ]->location )) {
s_hidNextReportTime[ idx ] = time;
s_hidReportTime[ idx ] = time;
}
}
}