mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 15:19:42 -06:00
fix the read-only menu item being disabled when emulation is paused (the hotkey was fine but I guess some people still use the menu)
This commit is contained in:
@ -1632,7 +1632,7 @@ void CFrame::UpdateGUI()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
GetMenuBar()->FindItem(IDM_RECORDREADONLY)->Enable(Running);
|
GetMenuBar()->FindItem(IDM_RECORDREADONLY)->Enable(Running || Paused);
|
||||||
|
|
||||||
if (!Initialized && !m_bGameLoading)
|
if (!Initialized && !m_bGameLoading)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user