Skip to content

Commit

Permalink
Fix initial state of GBA wave RAM
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonioND committed Mar 23, 2021
1 parent 30705a6 commit 1d68c4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/gba_core/sound.c
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ void GBA_SoundInit(void)
Sound.Chn3.wave_ram_buffer[0][i + 1] = 0x00;

Sound.Chn3.wave_ram_buffer[1][i] = 0x00;
Sound.Chn3.wave_ram_buffer[1][i + 1] = 0xFF;
Sound.Chn3.wave_ram_buffer[1][i + 1] = 0x00;
}
}

Expand Down

0 comments on commit 1d68c4c

Please sign in to comment.