Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Dammit Ctrl-Z. Restore a wxSpinCtrl parameter that accidentally got r…
…emoved in the last commit.
  • Loading branch information
lioncash committed May 1, 2013
1 parent fbc77e9 commit c2859a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/Src/FifoPlayerDlg.cpp
Expand Up @@ -193,7 +193,7 @@ void FifoPlayerDlg::CreateGUIControls()
sRecordingOptions->Add(m_FramesToRecordLabel, 0, wxALL, 5);

wxString initialNum = wxString::Format(_T("%d"), m_FramesToRecord);
m_FramesToRecordCtrl = new wxSpinCtrl(m_RecordPage, wxID_ANY, initialNum, wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 0, 10000);
m_FramesToRecordCtrl = new wxSpinCtrl(m_RecordPage, wxID_ANY, initialNum, wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 0, 10000, 1);
sRecordingOptions->Add(m_FramesToRecordCtrl, 0, wxALL, 5);

sRecordPage->Add(sRecordingOptions, 0, wxEXPAND, 5);
Expand Down

0 comments on commit c2859a5

Please sign in to comment.