all repos — mgba @ 31686c374ed78d8f15190c814276ed555fb0949a

mGBA Game Boy Advance Emulator

Libretro: Fix a memory leak with the render buffer
Jeffrey Pfau jeffrey@endrift.com
Mon, 07 Sep 2015 22:16:50 -0700
commit

31686c374ed78d8f15190c814276ed555fb0949a

parent

afbd795c60dd853a66befa4c5fa6163847104775

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

jump to
M CHANGESCHANGES

@@ -7,6 +7,7 @@ - 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 + - Libretro: Fix a memory leak with the render buffer Misc: - Qt: Window size command line options are now supported - Qt: Increase usability of key mapper
M src/platform/libretro/libretro.csrc/platform/libretro/libretro.c

@@ -193,6 +193,7 @@ }

void retro_deinit(void) { GBAContextDeinit(&context); + free(renderer.outputBuffer); } void retro_run(void) {