mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
Reformat all the things. Have fun with merge conflicts.
This commit is contained in:
@ -18,23 +18,23 @@
|
||||
class GCAdapterConfigDiag : public wxDialog
|
||||
{
|
||||
public:
|
||||
GCAdapterConfigDiag(wxWindow* const parent, const wxString& name, const int tab_num = 0);
|
||||
~GCAdapterConfigDiag();
|
||||
GCAdapterConfigDiag(wxWindow* const parent, const wxString& name, const int tab_num = 0);
|
||||
~GCAdapterConfigDiag();
|
||||
|
||||
void ScheduleAdapterUpdate();
|
||||
void UpdateAdapter(wxCommandEvent& ev);
|
||||
void ScheduleAdapterUpdate();
|
||||
void UpdateAdapter(wxCommandEvent& ev);
|
||||
|
||||
private:
|
||||
wxStaticText* m_adapter_status;
|
||||
int m_pad_id;
|
||||
wxStaticText* m_adapter_status;
|
||||
int m_pad_id;
|
||||
|
||||
void OnAdapterRumble(wxCommandEvent& event)
|
||||
{
|
||||
SConfig::GetInstance().m_AdapterRumble[m_pad_id] = event.IsChecked();
|
||||
}
|
||||
void OnAdapterRumble(wxCommandEvent& event)
|
||||
{
|
||||
SConfig::GetInstance().m_AdapterRumble[m_pad_id] = event.IsChecked();
|
||||
}
|
||||
|
||||
void OnAdapterKonga(wxCommandEvent& event)
|
||||
{
|
||||
SConfig::GetInstance().m_AdapterKonga[m_pad_id] = event.IsChecked();
|
||||
}
|
||||
void OnAdapterKonga(wxCommandEvent& event)
|
||||
{
|
||||
SConfig::GetInstance().m_AdapterKonga[m_pad_id] = event.IsChecked();
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user