all repos — mgba @ 4a9ab53231e03d464c097a652f8f1decd789c57a

mGBA Game Boy Advance Emulator

Don't block while forcing a draw
Jeffrey Pfau jeffrey@endrift.com
Thu, 16 Oct 2014 00:19:11 -0700
commit

4a9ab53231e03d464c097a652f8f1decd789c57a

parent

d52be5b3d9e4e22f3d3ba5183093580d120e9253

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/platform/qt/Display.cppsrc/platform/qt/Display.cpp

@@ -58,7 +58,7 @@ }

void Display::forceDraw() { if (m_drawThread) { - QMetaObject::invokeMethod(m_painter, "forceDraw", Qt::BlockingQueuedConnection); + QMetaObject::invokeMethod(m_painter, "forceDraw", Qt::QueuedConnection); } }