The rest of the fix, it should fill the FIFO completely
This commit is contained in:
parent
c302db8755
commit
9a4be28903
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ void Gba_Pcm_Fifo::timer_overflowed( int which_timer )
|
||||||
{
|
{
|
||||||
// Not filled by DMA, so fill with 16 bytes of silence
|
// Not filled by DMA, so fill with 16 bytes of silence
|
||||||
int reg = which ? FIFOB_L : FIFOA_L;
|
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 , (u16)0);
|
||||||
soundEvent(gba, reg+2, (u16)0);
|
soundEvent(gba, reg+2, (u16)0);
|
||||||
|
|
Loading…
Reference in a new issue