Skip to content

Commit

Permalink
Hopefully make wiimote speaker less crappy.
Browse files Browse the repository at this point in the history
  • Loading branch information
jordan-woyak committed Feb 5, 2013
1 parent bc35764 commit d0190fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/Core/Src/HW/WiimoteReal/WiimoteReal.cpp
Expand Up @@ -182,11 +182,11 @@ bool Wiimote::Write()
{
Report rpt;

if (last_audio_report.GetTimeDifference() > 6 && m_audio_reports.Pop(rpt))
if (last_audio_report.GetTimeDifference() > 5 && m_audio_reports.Pop(rpt))
{
IOWrite(rpt.first, rpt.second);
last_audio_report.Update();

IOWrite(rpt.first, rpt.second);
delete[] rpt.first;
return true;
}
Expand Down

0 comments on commit d0190fa

Please sign in to comment.