mirror of https://github.com/mgba-emu/mgba.git
GBA: Fix warnings when creating and loading savestates
This commit is contained in:
parent
ff4950c50d
commit
a2bc814d9c
1
CHANGES
1
CHANGES
|
@ -24,6 +24,7 @@ Bugfixes:
|
||||||
- GBA Memory: Fix alignment of LDM/STM on SRAM
|
- GBA Memory: Fix alignment of LDM/STM on SRAM
|
||||||
- GBA: Initialize uninitialized pristineRom and pristineRomSize members
|
- GBA: Initialize uninitialized pristineRom and pristineRomSize members
|
||||||
- GBA Memory: Fix unaligned out-of-bounds ROM loads
|
- GBA Memory: Fix unaligned out-of-bounds ROM loads
|
||||||
|
- GBA: Fix warnings when creating and loading savestates
|
||||||
Misc:
|
Misc:
|
||||||
- Qt: Window size command line options are now supported
|
- Qt: Window size command line options are now supported
|
||||||
- Qt: Increase usability of key mapper
|
- Qt: Increase usability of key mapper
|
||||||
|
|
|
@ -210,7 +210,7 @@ static const int _isValidRegister[REG_MAX >> 1] = {
|
||||||
1, 1, 1, 0, 1, 0, 1, 0,
|
1, 1, 1, 0, 1, 0, 1, 0,
|
||||||
1, 1, 1, 0, 1, 0, 0, 0,
|
1, 1, 1, 0, 1, 0, 0, 0,
|
||||||
1, 1, 1, 1, 1, 1, 1, 1,
|
1, 1, 1, 1, 1, 1, 1, 1,
|
||||||
1, 1, 1, 1, 1, 0, 0, 0,
|
1, 1, 1, 1, 0, 0, 0, 0,
|
||||||
// DMA
|
// DMA
|
||||||
1, 1, 1, 1, 1, 1, 1, 1,
|
1, 1, 1, 1, 1, 1, 1, 1,
|
||||||
1, 1, 1, 1, 1, 1, 1, 1,
|
1, 1, 1, 1, 1, 1, 1, 1,
|
||||||
|
@ -250,7 +250,7 @@ static const int _isRSpecialRegister[REG_MAX >> 1] = {
|
||||||
// Audio
|
// Audio
|
||||||
0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 1, 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,
|
||||||
// DMA
|
// DMA
|
||||||
|
|
Loading…
Reference in New Issue