mirror of https://github.com/mgba-emu/mgba.git
Qt: Remove potentially deadlocking optimization
This commit is contained in:
parent
669ceeecd6
commit
1a6f8f5381
1
CHANGES
1
CHANGES
|
@ -3,6 +3,7 @@ Emulation fixes:
|
||||||
- GBA SIO: Fix SI value for unattached MULTI mode
|
- GBA SIO: Fix SI value for unattached MULTI mode
|
||||||
Other fixes:
|
Other fixes:
|
||||||
- GBA: Fix out of bounds ROM accesses on patched ROMs smaller than 32 MiB
|
- GBA: Fix out of bounds ROM accesses on patched ROMs smaller than 32 MiB
|
||||||
|
- Qt: Remove potentially deadlocking optimization
|
||||||
|
|
||||||
0.9.2: (2021-07-10)
|
0.9.2: (2021-07-10)
|
||||||
Emulation fixes:
|
Emulation fixes:
|
||||||
|
|
|
@ -473,11 +473,6 @@ void PainterGL::draw() {
|
||||||
performDraw();
|
performDraw();
|
||||||
m_backend->swap(m_backend);
|
m_backend->swap(m_backend);
|
||||||
}
|
}
|
||||||
|
|
||||||
QMutexLocker locker(&m_mutex);
|
|
||||||
if (!m_queue.isEmpty()) {
|
|
||||||
QTimer::singleShot(1, this, &PainterGL::draw);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void PainterGL::forceDraw() {
|
void PainterGL::forceDraw() {
|
||||||
|
|
Loading…
Reference in New Issue