mirror of https://github.com/mgba-emu/mgba.git
GBA Serialize: Fix loading channel 3 volume (fixes #1107)
This commit is contained in:
parent
7167b963e6
commit
47f3358186
1
CHANGES
1
CHANGES
|
@ -6,6 +6,7 @@ Bugfixes:
|
|||
- GB Video: Fix enabling window when LY > WY (fixes mgba.io/i/409)
|
||||
- PowerPC: Fix several potential crashes (fixes mgba.io/i/1089)
|
||||
- Qt: Fix build with Qt 5.11 (fixes mgba.io/i/1094)
|
||||
- GBA Serialize: Fix loading channel 3 volume (fixes mgba.io/i/1107)
|
||||
|
||||
0.6.3: (2017-04-14)
|
||||
Bugfixes:
|
||||
|
|
|
@ -293,7 +293,7 @@ static const int _isWSpecialRegister[REG_MAX >> 1] = {
|
|||
0, 0, 0, 0, 0, 0, 0, 0,
|
||||
// Audio
|
||||
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, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 0, 0, 0, 0,
|
||||
|
|
Loading…
Reference in New Issue