mirror of https://github.com/mgba-emu/mgba.git
GB: Initialize audio properly
This commit is contained in:
parent
f2dadbd8b1
commit
71473721a8
1
CHANGES
1
CHANGES
|
@ -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
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue