all repos — mgba @ 01502ad7d4a50fc46c5e3665eab7595133465c5d

mGBA Game Boy Advance Emulator

Core: Remember to deinit proxy ring FIFO
Vicki Pfau vi@endrift.com
Sat, 20 Oct 2018 11:37:45 -0700
commit

01502ad7d4a50fc46c5e3665eab7595133465c5d

parent

b913419069b360ac1b2a51ef836e9a44c75bf966

2 files changed, 2 insertions(+), 0 deletions(-)

jump to
M CHANGESCHANGES

@@ -131,6 +131,7 @@ - GB Video: Fix SGB border hole size

- PSP2: Fix tearing issues (fixes mgba.io/i/1211) - Qt: Fix mapping analog triggers (fixes mgba.io/i/495) - Qt: Grab focus when game starts (fixes mgba.io/i/804) + - Core: Remember to deinit proxy ring FIFO Misc: - mGUI: Add SGB border configuration option - mGUI: Add support for different settings types
M src/feature/thread-proxy.csrc/feature/thread-proxy.c

@@ -78,6 +78,7 @@ MutexUnlock(&proxyRenderer->mutex);

if (waiting) { ThreadJoin(proxyRenderer->thread); } + RingFIFODeinit(&proxyRenderer->dirtyQueue); ConditionDeinit(&proxyRenderer->fromThreadCond); ConditionDeinit(&proxyRenderer->toThreadCond); MutexDeinit(&proxyRenderer->mutex);