mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00: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:
parent
3e773f093d
commit
3006d0696c
1 changed files with 1 additions and 1 deletions
|
@ -1632,7 +1632,7 @@ void CFrame::UpdateGUI()
|
|||
}
|
||||
}
|
||||
|
||||
GetMenuBar()->FindItem(IDM_RECORDREADONLY)->Enable(Running);
|
||||
GetMenuBar()->FindItem(IDM_RECORDREADONLY)->Enable(Running || Paused);
|
||||
|
||||
if (!Initialized && !m_bGameLoading)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue