mirror of https://github.com/mgba-emu/mgba.git
Core: Remember to deinit proxy ring FIFO
This commit is contained in:
parent
b913419069
commit
01502ad7d4
1
CHANGES
1
CHANGES
|
@ -131,6 +131,7 @@ Bugfixes:
|
|||
- 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
|
||||
|
|
|
@ -78,6 +78,7 @@ void mVideoThreadProxyDeinit(struct mVideoLogger* logger) {
|
|||
if (waiting) {
|
||||
ThreadJoin(proxyRenderer->thread);
|
||||
}
|
||||
RingFIFODeinit(&proxyRenderer->dirtyQueue);
|
||||
ConditionDeinit(&proxyRenderer->fromThreadCond);
|
||||
ConditionDeinit(&proxyRenderer->toThreadCond);
|
||||
MutexDeinit(&proxyRenderer->mutex);
|
||||
|
|
Loading…
Reference in New Issue