Permalink
Browse files

GBA Serialize: Fix loading channel 3 volume (fixes #1107)

  • Loading branch information...
endrift committed Jun 23, 2018
1 parent f8759a8 commit b67b192764b7e07aa3f3d6ef4a25a4390c8de999
Showing with 2 additions and 1 deletion.
  1. +1 −0 CHANGES
  2. +1 −1 src/gba/io.c
View
@@ -36,6 +36,7 @@ Bugfixes:
- GBA Video: Start timing mid-scanline when skipping BIOS
- Core: Fix audio sync breaking when interrupted
- Qt: Improve FPS timer stability
+ - GBA Serialize: Fix loading channel 3 volume (fixes mgba.io/i/1107)
Misc:
- GBA Timer: Use global cycles for timers
- GBA: Extend oddly-sized ROMs to full address space (fixes mgba.io/i/722)
View
@@ -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,

0 comments on commit b67b192

Please sign in to comment.