From 4f4469545e69bbe082bd1bd1e1830fbd78bd0b89 Mon Sep 17 00:00:00 2001 From: John Peterson Date: Tue, 3 Feb 2009 03:47:13 +0000 Subject: [PATCH] Wiimote: Made the GUI slightly more user friendly git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2079 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_Wiimote/Src/ConfigDlg.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Source/Plugins/Plugin_Wiimote/Src/ConfigDlg.cpp b/Source/Plugins/Plugin_Wiimote/Src/ConfigDlg.cpp index 3bb8c945e2..1905c52b8d 100644 --- a/Source/Plugins/Plugin_Wiimote/Src/ConfigDlg.cpp +++ b/Source/Plugins/Plugin_Wiimote/Src/ConfigDlg.cpp @@ -319,7 +319,9 @@ void ConfigDialog::CreateGUIControls() m_ConnectRealWiimote = new wxCheckBox(m_PageReal, ID_CONNECT_REAL, wxT("Connect real Wiimote")); m_UseRealWiimote = new wxCheckBox(m_PageReal, ID_USE_REAL, wxT("Use real Wiimote")); m_ConnectRealWiimote->SetToolTip(wxT("Connected to the real wiimote. This can not be changed during gameplay.")); - m_UseRealWiimote->SetToolTip(wxT("Use the real Wiimote in the game. This can be changed during gameplay.")); + m_UseRealWiimote->SetToolTip(wxT( + "Use the real Wiimote in the game. This can be changed during gameplay. This can not be selected" + " when a recording is to be done. No status in this window will be updated when this is checked.")); m_ConnectRealWiimote->SetValue(g_Config.bConnectRealWiimote); m_UseRealWiimote->SetValue(g_Config.bUseRealWiimote); @@ -635,6 +637,9 @@ void ConfigDialog::RecordMovement(wxCommandEvent& event) else { m_RecordButton[m_iRecordTo]->SetLabel(wxT("Press +")); + // This is for usability purposes, it may not be obvious at all that this must be unchecked + // for the recording to work + m_UseRealWiimote->SetValue(false); g_Config.bUseRealWiimote = false; return; }