diff --git a/CHANGES b/CHANGES index 54e8dcaae..1f889b14b 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,7 @@ 0.10.5: (Future) Other fixes: - FFmpeg: Fix failing to record videos with CRF video (fixes mgba.io/i/3368) + - GB Core: Fix cloning savedata when backing file is outdated (fixes mgba.io/i/3388) - GBA Core: Fix booting into BIOS when skip BIOS is enabled - GBA Hardware: Fix loading states unconditionally overwriting GPIO memory - Updater: Fix rewriting folders and files on Windows (fixes mgba.io/i/3384) diff --git a/src/gb/core.c b/src/gb/core.c index 8c2b087ae..0d1e18522 100644 --- a/src/gb/core.c +++ b/src/gb/core.c @@ -1092,19 +1092,32 @@ static struct mCheatDevice* _GBCoreCheatDevice(struct mCore* core) { static size_t _GBCoreSavedataClone(struct mCore* core, void** sram) { struct GB* gb = core->board; - struct VFile* vf = gb->sramVf; - if (vf) { - *sram = malloc(vf->size(vf)); - vf->seek(vf, 0, SEEK_SET); - return vf->read(vf, *sram, vf->size(vf)); + size_t sramSize = gb->sramSize; + size_t vfSize = 0; + size_t size = sramSize; + uint8_t* view = NULL; + + if (gb->sramVf) { + vfSize = gb->sramVf->size(gb->sramVf); + if (vfSize > size) { + size = vfSize; + } } - if (gb->sramSize) { - *sram = malloc(gb->sramSize); - memcpy(*sram, gb->memory.sram, gb->sramSize); - return gb->sramSize; + if (!size) { + *sram = NULL; + return 0; } - *sram = NULL; - return 0; + + view = malloc(size); + if (sramSize) { + memcpy(view, gb->memory.sram, gb->sramSize); + } + if (vfSize > sramSize) { + gb->sramVf->seek(gb->sramVf, sramSize, SEEK_SET); + gb->sramVf->read(gb->sramVf, &view[sramSize], vfSize - sramSize); + } + *sram = view; + return size; } static bool _GBCoreSavedataRestore(struct mCore* core, const void* sram, size_t size, bool writeback) {