Default to assuming OBS is shutting down

This reverts commit eea91b79b38b7c33561dc6c639d01dea8a802cdd.
This commit is contained in:
WarmUpTill 2026-04-28 20:54:49 +02:00 committed by WarmUpTill
parent 86061b3cf1
commit 6e0f7ab38f

View File

@ -310,7 +310,7 @@ bool HighlightUIElementsEnabled()
bool OBSIsShuttingDown()
{
return GetSwitcher() && GetSwitcher()->obsIsShuttingDown;
return !GetSwitcher() || GetSwitcher()->obsIsShuttingDown;
}
bool InitialLoadIsComplete()