Libretro: Fix a memory leak with the render buffer
Jeffrey Pfau jeffrey@endrift.com
Mon, 07 Sep 2015 22:16:50 -0700
2 files changed,
2 insertions(+),
0 deletions(-)
M
CHANGES
→
CHANGES
@@ -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.c
→
src/platform/libretro/libretro.c
@@ -193,6 +193,7 @@ }
void retro_deinit(void) { GBAContextDeinit(&context); + free(renderer.outputBuffer); } void retro_run(void) {