The rest of the fix, it should fill the FIFO completely

CQTexperiment
Chris Moeller 2013-10-21 14:49:38 -07:00
parent c302db8755
commit 9a4be28903
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ void Gba_Pcm_Fifo::timer_overflowed( int which_timer )
{
// Not filled by DMA, so fill with 16 bytes of silence
int reg = which ? FIFOB_L : FIFOA_L;
for ( int n = 4; n--; )
for ( int n = 8; n--; )
{
soundEvent(gba, reg , (u16)0);
soundEvent(gba, reg+2, (u16)0);