mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-21 12:41:09 +00:00
Fixed stupid bool to int conversion warnings.
This commit is contained in:
parent
a76059377d
commit
3a2c0b778a
@ -112,7 +112,7 @@ protected:
|
|||||||
void Event_ProgressiveScan(wxCommandEvent &ev)
|
void Event_ProgressiveScan(wxCommandEvent &ev)
|
||||||
{
|
{
|
||||||
SConfig::GetInstance().m_SYSCONF->SetData("IPL.PGS", ev.GetInt());
|
SConfig::GetInstance().m_SYSCONF->SetData("IPL.PGS", ev.GetInt());
|
||||||
SConfig::GetInstance().m_LocalCoreStartupParameter.bProgressive = ev.GetInt();
|
SConfig::GetInstance().m_LocalCoreStartupParameter.bProgressive = ev.IsChecked();
|
||||||
|
|
||||||
ev.Skip();
|
ev.Skip();
|
||||||
}
|
}
|
||||||
|
@ -61,7 +61,7 @@ public:
|
|||||||
}
|
}
|
||||||
void OnReconnectOnLoad(wxCommandEvent& event)
|
void OnReconnectOnLoad(wxCommandEvent& event)
|
||||||
{
|
{
|
||||||
SConfig::GetInstance().m_WiimoteReconnectOnLoad = event.GetInt();
|
SConfig::GetInstance().m_WiimoteReconnectOnLoad = event.IsChecked();
|
||||||
event.Skip();
|
event.Skip();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user