all repos — mgba @ 17dde378ed70d57258e6b2dce5d174de27b4f099

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

17dde378ed70d57258e6b2dce5d174de27b4f099

parent

c982350478afe8bc4e412652ff3448aa2931e94c

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

jump to
M CHANGESCHANGES

@@ -14,6 +14,7 @@ - Core: Fix race condition initializing thread proxy

- Core: Fix integer overflow in ELF loading - 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: Fix color selection in asset view (fixes mgba.io/i/1648)
M src/gba/core.csrc/gba/core.c

@@ -608,7 +608,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); } }