mirror of https://github.com/mgba-emu/mgba.git
GBA Serialize: Fix loading channel 3 volume (fixes #1107)
This commit is contained in:
parent
f8759a8760
commit
b67b192764
1
CHANGES
1
CHANGES
|
@ -36,6 +36,7 @@ Bugfixes:
|
||||||
- GBA Video: Start timing mid-scanline when skipping BIOS
|
- GBA Video: Start timing mid-scanline when skipping BIOS
|
||||||
- Core: Fix audio sync breaking when interrupted
|
- Core: Fix audio sync breaking when interrupted
|
||||||
- Qt: Improve FPS timer stability
|
- Qt: Improve FPS timer stability
|
||||||
|
- GBA Serialize: Fix loading channel 3 volume (fixes mgba.io/i/1107)
|
||||||
Misc:
|
Misc:
|
||||||
- GBA Timer: Use global cycles for timers
|
- GBA Timer: Use global cycles for timers
|
||||||
- GBA: Extend oddly-sized ROMs to full address space (fixes mgba.io/i/722)
|
- GBA: Extend oddly-sized ROMs to full address space (fixes mgba.io/i/722)
|
||||||
|
|
|
@ -293,7 +293,7 @@ static const int _isWSpecialRegister[REG_MAX >> 1] = {
|
||||||
0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
// Audio
|
// Audio
|
||||||
1, 1, 1, 0, 1, 0, 1, 0,
|
1, 1, 1, 0, 1, 0, 1, 0,
|
||||||
1, 1, 1, 0, 1, 0, 1, 0,
|
1, 0, 1, 0, 1, 0, 1, 0,
|
||||||
1, 0, 1, 0, 0, 0, 0, 0,
|
1, 0, 1, 0, 0, 0, 0, 0,
|
||||||
1, 1, 1, 1, 1, 1, 1, 1,
|
1, 1, 1, 1, 1, 1, 1, 1,
|
||||||
1, 1, 1, 1, 0, 0, 0, 0,
|
1, 1, 1, 1, 0, 0, 0, 0,
|
||||||
|
|
Loading…
Reference in New Issue