FullscreenUI: Fix OSD message background when guest display off

We don't want to disable blur, because then you get a colour change when
it turns back on.
This commit is contained in:
Stenzek
2026-04-03 15:56:25 +10:00
parent ac88e79382
commit 9b0a4ec559
+1 -1
View File
@@ -1038,7 +1038,7 @@ void FullscreenUI::UpdateTransitionState()
bool FullscreenUI::CanBlurBackground()
{
// If there's no video presenter, we have no way to get the current backbuffer for blurring, so don't even try.
return VideoPresenter::HasDisplayTexture();
return VideoThread::HasGPUBackend();
}
void FullscreenUI::InvalidateBlurBackground()