GB: Initialize audio properly

This commit is contained in:
Jeffrey Pfau 2016-09-25 23:29:29 -07:00
parent f2dadbd8b1
commit 71473721a8
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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);