all repos — mgba @ 90ea4cbe33b098e274f229a754d30069d08bb810

mGBA Game Boy Advance Emulator

GBA: Fix BIOS check on big endian
Jeffrey Pfau jeffrey@endrift.com
Mon, 07 Sep 2015 19:24:30 -0700
commit

90ea4cbe33b098e274f229a754d30069d08bb810

parent

f155780eba1e4008f0b0548a92e67cfdf69df218

2 files changed, 4 insertions(+), 1 deletions(-)

jump to
M CHANGESCHANGES

@@ -6,6 +6,7 @@ - Qt: Fix drag and drop on Windows

- Qt: Reenable double buffering, as disabling it broke some Windows configs - GBA Video: Start on the scanline BIOS finishes on if no BIOS is loaded - GBA: Deinit savegame when unloading a ROM + - GBA: Fix BIOS check on big endian Misc: - Qt: Window size command line options are now supported - Qt: Increase usability of key mapper
M src/gba/gba.csrc/gba/gba.c

@@ -688,7 +688,9 @@ return false;

} int i; for (i = 0; i < 7; ++i) { - if ((interruptTable[i] & 0xFFFF0000) != 0xEA000000) { + uint32_t interrupt; + LOAD_32(interrupt, i * sizeof(uint32_t), interruptTable); + if ((interrupt & 0xFFFF0000) != 0xEA000000) { return false; } }