From 6eb216fc777606a6a2a687af7fbdcb1ee7f80cd9 Mon Sep 17 00:00:00 2001 From: Rachel Bryk Date: Tue, 15 Oct 2013 17:28:01 -0400 Subject: [PATCH] (Netplay) Disable record input checkbox while a game is running. Fixes issue 6734. --- Source/Core/DolphinWX/Src/NetWindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/DolphinWX/Src/NetWindow.cpp b/Source/Core/DolphinWX/Src/NetWindow.cpp index 0de2ee684d..b575ad6663 100644 --- a/Source/Core/DolphinWX/Src/NetWindow.cpp +++ b/Source/Core/DolphinWX/Src/NetWindow.cpp @@ -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)