Qt: Remove potentially deadlocking optimization

This commit is contained in:
Vicki Pfau 2021-04-25 17:07:54 -07:00
parent 669ceeecd6
commit 1a6f8f5381
2 changed files with 1 additions and 5 deletions

View File

@ -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:

View File

@ -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() {