all repos — mgba @ fb12372ae3e5b71b9c2fc07657bd2601f842709e

mGBA Game Boy Advance Emulator

GBA: Automatically skip BIOS for multiboot ROMs
Vicki Pfau vi@endrift.com
Mon, 10 Feb 2020 18:08:07 -0800
commit

fb12372ae3e5b71b9c2fc07657bd2601f842709e

parent

0670eebe15083c4a58ae7f181598ddeba3a0d5d2

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

jump to
M CHANGESCHANGES

@@ -25,6 +25,7 @@ - Core: Fix integer overflow in ELF loading

- Debugger: Don't skip undefined instructions when debugger attached - FFmpeg: Fix crash when -strict -2 is needed for vcodec or container - FFmpeg: Disallow recording video with no audio nor video + - GBA: Automatically skip BIOS for multiboot ROMs - Qt: Only dynamically reset video scale if a game is running - Qt: Fix race condition with proxied video events - Qt: Force OpenGL paint engine creation thread (fixes mgba.io/i/1642)
M src/gba/core.csrc/gba/core.c

@@ -636,7 +636,7 @@ }

#endif ARMReset(core->cpu); - if (core->opts.skipBios && (gba->romVf || gba->memory.rom)) { + if ((core->opts.skipBios && (gba->romVf || gba->memory.rom)) || (gba->romVf && GBAIsMB(gba->romVf))) { GBASkipBIOS(core->board); } }