Libretro: Fix a memory leak with the render buffer

This commit is contained in:
Jeffrey Pfau 2015-09-07 22:16:50 -07:00
parent 88f8f2451d
commit 68f6f34ee1
2 changed files with 2 additions and 0 deletions

View File

@ -7,6 +7,7 @@ Bugfixes:
- GBA Video: Start on the scanline BIOS finishes on if no BIOS is loaded - GBA Video: Start on the scanline BIOS finishes on if no BIOS is loaded
- GBA: Deinit savegame when unloading a ROM - GBA: Deinit savegame when unloading a ROM
- GBA: Fix BIOS check on big endian - GBA: Fix BIOS check on big endian
- Libretro: Fix a memory leak with the render buffer
Misc: Misc:
- Qt: Remove useless help icons in dialogs - Qt: Remove useless help icons in dialogs
- GBA: Attempting to save a screenshot-style savestate should be allowed without libpng - GBA: Attempting to save a screenshot-style savestate should be allowed without libpng

View File

@ -204,6 +204,7 @@ void retro_deinit(void) {
bios = 0; bios = 0;
} }
GBADestroy(&gba); GBADestroy(&gba);
free(renderer.outputBuffer);
} }
void retro_run(void) { void retro_run(void) {