mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-01 01:20:40 +00:00
Merge pull request #2344 from illuminatedgeek/cpu-override-slider-size
Add size to CPU clock override slider
This commit is contained in:
commit
989c0f427f
@ -22,7 +22,7 @@ AdvancedConfigPane::AdvancedConfigPane(wxWindow* parent, wxWindowID id)
|
|||||||
void AdvancedConfigPane::InitializeGUI()
|
void AdvancedConfigPane::InitializeGUI()
|
||||||
{
|
{
|
||||||
m_clock_override_checkbox = new wxCheckBox(this, wxID_ANY, _("Enable CPU Clock Override"));
|
m_clock_override_checkbox = new wxCheckBox(this, wxID_ANY, _("Enable CPU Clock Override"));
|
||||||
m_clock_override_slider = new wxSlider(this, wxID_ANY, 100, 0, 150);
|
m_clock_override_slider = new wxSlider(this, wxID_ANY, 100, 0, 150, wxDefaultPosition, wxSize(200,-1));
|
||||||
m_clock_override_text = new wxStaticText(this, wxID_ANY, "");
|
m_clock_override_text = new wxStaticText(this, wxID_ANY, "");
|
||||||
|
|
||||||
m_clock_override_checkbox->Bind(wxEVT_CHECKBOX, &AdvancedConfigPane::OnClockOverrideCheckBoxChanged, this);
|
m_clock_override_checkbox->Bind(wxEVT_CHECKBOX, &AdvancedConfigPane::OnClockOverrideCheckBoxChanged, this);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user