1492 fixed type on line 313

This commit is contained in:
Dave French
2015-01-11 21:23:30 +00:00
parent a1dce66ca8
commit 49b3f36a57

View File

@@ -310,7 +310,7 @@ void NesObject::renderOutput( sampleFrame * buf, fpp_t frames )
////////////////////////////////
// make sure we don't overflow
m_ch3Counter = m_wlen2 ? m_ch2Counter % m_wlen2 : 0;
m_ch3Counter = m_wlen3 ? m_ch3Counter % m_wlen3 : 0;
// render triangle wave
if( m_wlen3 <= m_maxWlen && ch3Enabled )