mirror of https://github.com/mgba-emu/mgba.git
Libretro: Fix a memory leak with the render buffer
This commit is contained in:
parent
88f8f2451d
commit
68f6f34ee1
1
CHANGES
1
CHANGES
|
@ -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
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue