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
|
||||
- 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
|
||||
|
|
|
@ -399,8 +399,8 @@ void GBReset(struct LR35902Core* cpu) {
|
|||
GBMemoryReset(gb);
|
||||
GBVideoReset(&gb->video);
|
||||
GBTimerReset(&gb->timer);
|
||||
GBIOReset(gb);
|
||||
GBAudioReset(&gb->audio);
|
||||
GBIOReset(gb);
|
||||
GBSIOReset(&gb->sio);
|
||||
|
||||
GBSavedataUnmask(gb);
|
||||
|
|
Loading…
Reference in New Issue