mirror of https://github.com/mgba-emu/mgba.git
Core: Remember to deinit proxy ring FIFO
This commit is contained in:
parent
3581b90a47
commit
67ca233412
1
CHANGES
1
CHANGES
|
@ -124,6 +124,7 @@ Bugfixes:
|
||||||
- PSP2: Fix tearing issues (fixes mgba.io/i/1211)
|
- PSP2: Fix tearing issues (fixes mgba.io/i/1211)
|
||||||
- Qt: Fix mapping analog triggers (fixes mgba.io/i/495)
|
- Qt: Fix mapping analog triggers (fixes mgba.io/i/495)
|
||||||
- Qt: Grab focus when game starts (fixes mgba.io/i/804)
|
- Qt: Grab focus when game starts (fixes mgba.io/i/804)
|
||||||
|
- Core: Remember to deinit proxy ring FIFO
|
||||||
Misc:
|
Misc:
|
||||||
- mGUI: Add SGB border configuration option
|
- mGUI: Add SGB border configuration option
|
||||||
- mGUI: Add support for different settings types
|
- mGUI: Add support for different settings types
|
||||||
|
|
|
@ -78,6 +78,7 @@ void mVideoThreadProxyDeinit(struct mVideoLogger* logger) {
|
||||||
if (waiting) {
|
if (waiting) {
|
||||||
ThreadJoin(proxyRenderer->thread);
|
ThreadJoin(proxyRenderer->thread);
|
||||||
}
|
}
|
||||||
|
RingFIFODeinit(&proxyRenderer->dirtyQueue);
|
||||||
ConditionDeinit(&proxyRenderer->fromThreadCond);
|
ConditionDeinit(&proxyRenderer->fromThreadCond);
|
||||||
ConditionDeinit(&proxyRenderer->toThreadCond);
|
ConditionDeinit(&proxyRenderer->toThreadCond);
|
||||||
MutexDeinit(&proxyRenderer->mutex);
|
MutexDeinit(&proxyRenderer->mutex);
|
||||||
|
|
Loading…
Reference in New Issue