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 - GB, GBA: Fix emulator hardlocking when halting with IRQs off
- SDL: Attach rumble in SDL frontend - SDL: Attach rumble in SDL frontend
- GBA Hardware: Improve Game Boy Player rumble behavior - GBA Hardware: Improve Game Boy Player rumble behavior
- GB: Initialize audio properly
Misc: Misc:
- All: Only update version info if needed - All: Only update version info if needed
- FFmpeg: Encoding cleanup - FFmpeg: Encoding cleanup

View File

@ -399,8 +399,8 @@ void GBReset(struct LR35902Core* cpu) {
GBMemoryReset(gb); GBMemoryReset(gb);
GBVideoReset(&gb->video); GBVideoReset(&gb->video);
GBTimerReset(&gb->timer); GBTimerReset(&gb->timer);
GBIOReset(gb);
GBAudioReset(&gb->audio); GBAudioReset(&gb->audio);
GBIOReset(gb);
GBSIOReset(&gb->sio); GBSIOReset(&gb->sio);
GBSavedataUnmask(gb); GBSavedataUnmask(gb);