Hopefully make wiimote speaker less crappy.

This commit is contained in:
Jordan Woyak 2013-02-04 22:11:13 -06:00
parent bc35764ec2
commit d0190faded
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}