GBA: Initialize uninitialized pristineRom and pristineRomSize members

This commit is contained in:
Jeffrey Pfau 2015-11-10 22:37:23 -08:00
parent eee291e00e
commit fe8c632c78
2 changed files with 4 additions and 0 deletions

View File

@ -22,6 +22,7 @@ Bugfixes:
- GBA Memory: Fix DMA behavior for SRAM accesses
- GBA Memory: Fix Store8 to OBJ VRAM
- GBA Memory: Fix alignment of LDM/STM on SRAM
- GBA: Initialize uninitialized pristineRom and pristineRomSize members
Misc:
- Qt: Window size command line options are now supported
- Qt: Increase usability of key mapper

View File

@ -103,6 +103,9 @@ static void GBAInit(struct ARMCore* cpu, struct ARMComponent* component) {
gba->hardCrash = true;
gba->performingDMA = false;
gba->pristineRom = 0;
gba->pristineRomSize = 0;
}
void GBAUnloadROM(struct GBA* gba) {