mirror of https://github.com/PCSX2/pcsx2.git
SPU2: Missed Linux WX files
This commit is contained in:
parent
df1461bba6
commit
f11334cb3b
|
@ -39,9 +39,6 @@ MixerTab::MixerTab(wxWindow* parent)
|
|||
|
||||
m_inter_select = new wxChoice(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, interpolation_entries);
|
||||
|
||||
effect_check = new wxCheckBox(this, wxID_ANY, "Disable Effects Processing (Speedup)");
|
||||
dealias_check = new wxCheckBox(this, wxID_ANY, "Use the de-alias filter (Overemphasizes the highs) ");
|
||||
|
||||
// Latency Slider
|
||||
const int min_latency = SynchMode == 0 ? LATENCY_MIN_TIMESTRETCH : LATENCY_MIN;
|
||||
|
||||
|
@ -66,8 +63,6 @@ MixerTab::MixerTab(wxWindow* parent)
|
|||
m_audio_box->Add(m_audio_select, wxSizerFlags().Expand());
|
||||
|
||||
top_box->Add(m_inter_select, wxSizerFlags().Centre());
|
||||
top_box->Add(effect_check, wxSizerFlags().Centre());
|
||||
top_box->Add(dealias_check, wxSizerFlags().Centre());
|
||||
top_box->Add(m_latency_box, wxSizerFlags().Expand());
|
||||
top_box->Add(m_volume_box, wxSizerFlags().Expand());
|
||||
top_box->Add(m_audio_box, wxSizerFlags().Expand());
|
||||
|
@ -79,8 +74,6 @@ void MixerTab::Load()
|
|||
{
|
||||
m_inter_select->SetSelection(Interpolation);
|
||||
|
||||
effect_check->SetValue(EffectsDisabled);
|
||||
dealias_check->SetValue(postprocess_filter_dealias);
|
||||
m_audio_select->SetSelection(numSpeakers);
|
||||
|
||||
m_volume_slider->SetValue(FinalVolume * 100);
|
||||
|
@ -90,8 +83,6 @@ void MixerTab::Load()
|
|||
void MixerTab::Save()
|
||||
{
|
||||
Interpolation = m_inter_select->GetSelection();
|
||||
EffectsDisabled = effect_check->GetValue();
|
||||
postprocess_filter_dealias = dealias_check->GetValue();
|
||||
|
||||
numSpeakers = m_audio_select->GetSelection();
|
||||
|
||||
|
|
|
@ -31,7 +31,6 @@ class MixerTab : public wxPanel
|
|||
{
|
||||
public:
|
||||
wxChoice *m_inter_select, *m_audio_select;
|
||||
wxCheckBox *effect_check, *dealias_check;
|
||||
wxSlider *m_latency_slider, *m_volume_slider;
|
||||
wxStaticBoxSizer *m_volume_box, *m_latency_box;
|
||||
wxBoxSizer* m_audio_box;
|
||||
|
|
Loading…
Reference in New Issue