FullscreenUI: Prevent quick menu opening over other windows

This commit is contained in:
Connor McLaughlin 2021-03-05 01:12:56 +10:00
parent 521ade025c
commit 767343ca22
1 changed files with 1 additions and 1 deletions

View File

@ -253,7 +253,7 @@ void SystemPaused(bool paused)
void OpenQuickMenu()
{
if (!System::IsValid())
if (!System::IsValid() || s_current_main_window != MainWindowType::None)
return;
s_was_paused_on_quick_menu_open = System::IsPaused();