GB: Initialize audio properly
Jeffrey Pfau jeffrey@endrift.com
Sun, 25 Sep 2016 23:29:29 -0700
2 files changed,
2 insertions(+),
1 deletions(-)
M
CHANGES
→
CHANGES
@@ -19,6 +19,7 @@ - GB: Fix invalid STOP behavior on Game Boy Color
- 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
M
src/gb/gb.c
→
src/gb/gb.c
@@ -399,8 +399,8 @@ }
GBMemoryReset(gb); GBVideoReset(&gb->video); GBTimerReset(&gb->timer); - GBIOReset(gb); GBAudioReset(&gb->audio); + GBIOReset(gb); GBSIOReset(&gb->sio); GBSavedataUnmask(gb);