diff --git a/CHANGES b/CHANGES index 266bc53c9..3e63d0bf9 100644 --- a/CHANGES +++ b/CHANGES @@ -19,6 +19,7 @@ Bugfixes: - GB, GBA: Fix emulator hardlocking when halting with IRQs off - SDL: Attach rumble in SDL frontend - GBA Hardware: Improve Game Boy Player rumble behavior + - GB: Initialize audio properly Misc: - All: Only update version info if needed - FFmpeg: Encoding cleanup diff --git a/src/gb/gb.c b/src/gb/gb.c index 59000fd4b..1322f504b 100644 --- a/src/gb/gb.c +++ b/src/gb/gb.c @@ -399,8 +399,8 @@ void GBReset(struct LR35902Core* cpu) { GBMemoryReset(gb); GBVideoReset(&gb->video); GBTimerReset(&gb->timer); - GBIOReset(gb); GBAudioReset(&gb->audio); + GBIOReset(gb); GBSIOReset(&gb->sio); GBSavedataUnmask(gb);