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 afbd795c60
commit 31686c374e
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: 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

View File

@ -193,6 +193,7 @@ void retro_init(void) {
void retro_deinit(void) {
GBAContextDeinit(&context);
free(renderer.outputBuffer);
}
void retro_run(void) {