Qt: Use vsync when any FSUI window is open

Fixes high GPU usage when pause menu is opened. Previously, it was fine
if you started from big picture mode, but not if you invoked it by
opening the menu.
This commit is contained in:
Connor McLaughlin 2022-10-18 22:35:39 +10:00 committed by refractionpcsx2
parent 0df6fda9e8
commit e6dbd55644
1 changed files with 3 additions and 1 deletions

View File

@ -933,7 +933,9 @@ void Host::ReleaseHostDisplay()
VsyncMode Host::GetEffectiveVSyncMode()
{
// Force vsync on when running big picture UI, and paused or no VM.
if (g_emu_thread->isRunningFullscreenUI())
// We check the "running FSUI" flag here, because that way we set the initial vsync
// state when initalizing to on, avoiding an unnecessary switch.
if (FullscreenUI::HasActiveWindow() || (!FullscreenUI::IsInitialized() && g_emu_thread->isRunningFullscreenUI()))
{
const VMState state = VMManager::GetState();
if (state == VMState::Shutdown || state == VMState::Paused)