mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
(Netplay) Disable record input checkbox while a game is running.
Fixes issue 6734.
This commit is contained in:
@ -473,6 +473,7 @@ void NetPlayDiag::OnMsgStartGame()
|
||||
GetEventHandler()->AddPendingEvent(evt);
|
||||
if (m_start_btn)
|
||||
m_start_btn->Disable();
|
||||
m_record_chkbox->Disable();
|
||||
}
|
||||
|
||||
void NetPlayDiag::OnMsgStopGame()
|
||||
@ -481,6 +482,7 @@ void NetPlayDiag::OnMsgStopGame()
|
||||
GetEventHandler()->AddPendingEvent(evt);
|
||||
if (m_start_btn)
|
||||
m_start_btn->Enable();
|
||||
m_record_chkbox->Enable();
|
||||
}
|
||||
|
||||
void NetPlayDiag::OnAdjustBuffer(wxCommandEvent& event)
|
||||
|
Reference in New Issue
Block a user