Merge pull request #3010 from Felk/master
fixed disabling auto reporting for emulated wiimotes not working properly
This commit is contained in:
commit
66dd79c569
|
@ -754,7 +754,7 @@ void Wiimote::Update()
|
|||
Movie::CheckWiimoteStatus(m_index, data, rptf, m_extension->active_extension, m_ext_key);
|
||||
|
||||
// don't send a data report if auto reporting is off
|
||||
if (false == m_reporting_auto && data[2] >= WM_REPORT_CORE)
|
||||
if (false == m_reporting_auto && data[1] >= WM_REPORT_CORE)
|
||||
return;
|
||||
|
||||
// send data report
|
||||
|
|
Loading…
Reference in New Issue