mirror of https://github.com/mgba-emu/mgba.git
Libretro: Fix a memory leak with the render buffer
This commit is contained in:
parent
afbd795c60
commit
31686c374e
1
CHANGES
1
CHANGES
|
@ -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
|
||||
|
|
|
@ -193,6 +193,7 @@ void retro_init(void) {
|
|||
|
||||
void retro_deinit(void) {
|
||||
GBAContextDeinit(&context);
|
||||
free(renderer.outputBuffer);
|
||||
}
|
||||
|
||||
void retro_run(void) {
|
||||
|
|
Loading…
Reference in New Issue