Fix whitespaces (I hope)

This commit is contained in:
SilasLaspada 2017-05-30 17:49:15 -06:00
parent 661b274f57
commit 07759b2e49
3 changed files with 4 additions and 4 deletions

View File

@ -83,7 +83,7 @@ ConfigEntry ConfigFile[] =
{"Threaded3D", 0, &Threaded3D, 1, NULL, 0},
{"Microphone", 0, &Microphone, 1, NULL, 0},
{"Microphone", 0, &Microphone, 1, NULL, 0},
{"", -1, NULL, 0, NULL, 0}
};

View File

@ -40,7 +40,7 @@ EmuConfigDialog::EmuConfigDialog(wxWindow* parent)
vboxmain->Add(cbThreaded3D, 0, wxALL&(~wxBOTTOM), 15);
cbThreaded3D->SetValue(Config::Threaded3D != 0);
cbMicrophone = new wxCheckBox(this, wxID_ANY, "Auto mic");
cbMicrophone = new wxCheckBox(this, wxID_ANY, "Auto mic");
vboxmain->Add(cbMicrophone, 0, wxALL&(~wxBOTTOM), 15);
cbMicrophone->SetValue(Config::Microphone != 0);
@ -71,7 +71,7 @@ void EmuConfigDialog::OnOk(wxCommandEvent& event)
{
Config::DirectBoot = cbDirectBoot->GetValue() ? 1:0;
Config::Threaded3D = cbThreaded3D->GetValue() ? 1:0;
Config::Microphone = cbMicrophone->GetValue() ? 1:0;
Config::Microphone = cbMicrophone->GetValue() ? 1:0;
Config::Save();
Close();

View File

@ -38,7 +38,7 @@ private:
wxCheckBox* cbDirectBoot;
wxCheckBox* cbThreaded3D;
wxCheckBox* cbMicrophone;
wxCheckBox* cbMicrophone;
};
#endif // WX_EMUCONFIG_H