mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-26 07:35:41 +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)
|
void QtHostInterface::onDisplayWindowMouseMoveEvent(int x, int y)
|
||||||
{
|
{
|
||||||
|
// display might be null here if the event happened after shutdown
|
||||||
DebugAssert(isOnWorkerThread());
|
DebugAssert(isOnWorkerThread());
|
||||||
m_display->SetMousePosition(x, y);
|
if (m_display)
|
||||||
|
m_display->SetMousePosition(x, y);
|
||||||
}
|
}
|
||||||
|
|
||||||
void QtHostInterface::onDisplayWindowMouseButtonEvent(int button, bool pressed)
|
void QtHostInterface::onDisplayWindowMouseButtonEvent(int button, bool pressed)
|
||||||
|
|
Loading…
Reference in a new issue