all repos — mgba @ fb8781b4933a50beac6b950308b432c20ecde77e

mGBA Game Boy Advance Emulator

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

fb8781b4933a50beac6b950308b432c20ecde77e

parent

8b75c170d3ca338c95475ce0c4c82a0d7467a960

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