mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-22 05:45:38 +00:00
Qt: Fix possible race/crash on shutdown
This commit is contained in:
parent
8f82987341
commit
d80aaf3880
|
@ -225,8 +225,10 @@ void QtHostInterface::onDisplayWindowKeyEvent(int key, bool pressed)
|
|||
|
||||
void QtHostInterface::onDisplayWindowMouseMoveEvent(int x, int y)
|
||||
{
|
||||
// display might be null here if the event happened after shutdown
|
||||
DebugAssert(isOnWorkerThread());
|
||||
m_display->SetMousePosition(x, y);
|
||||
if (m_display)
|
||||
m_display->SetMousePosition(x, y);
|
||||
}
|
||||
|
||||
void QtHostInterface::onDisplayWindowMouseButtonEvent(int button, bool pressed)
|
||||
|
|
Loading…
Reference in a new issue