all repos — mgba @ 71473721a86834ebe321599ebfaa92059b996fb7

mGBA Game Boy Advance Emulator

GB: Initialize audio properly
Jeffrey Pfau jeffrey@endrift.com
Sun, 25 Sep 2016 23:29:29 -0700
commit

71473721a86834ebe321599ebfaa92059b996fb7

parent

f2dadbd8b1e577c379de5a583b223f257ad8e8bb

2 files changed, 2 insertions(+), 1 deletions(-)

jump to
M CHANGESCHANGES

@@ -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.csrc/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);