From 1d68c4c28940abfbe2ca8fca6c751cd0030f93dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Ni=C3=B1o=20D=C3=ADaz?= Date: Tue, 23 Mar 2021 01:08:59 +0000 Subject: [PATCH] Fix initial state of GBA wave RAM --- source/gba_core/sound.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/gba_core/sound.c b/source/gba_core/sound.c index 6fabc1c..a3963e7 100644 --- a/source/gba_core/sound.c +++ b/source/gba_core/sound.c @@ -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; } }