Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
(Netplay) Disable record input checkbox while a game is running.
Fixes issue 6734.
  • Loading branch information
RachelBryk committed Oct 15, 2013
1 parent b11cf1f commit 6eb216f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/Core/DolphinWX/Src/NetWindow.cpp
Expand Up @@ -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()
Expand All @@ -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)
Expand Down

0 comments on commit 6eb216f

Please sign in to comment.