mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Lint fixes
This commit is contained in:
@ -15,10 +15,12 @@ WidescreenManager::WidescreenManager()
|
||||
{
|
||||
Update();
|
||||
|
||||
m_config_changed = ConfigChangedEvent::Register([this](u32 bits) {
|
||||
if (bits & (CONFIG_CHANGE_BIT_ASPECT_RATIO))
|
||||
Update();
|
||||
}, "Widescreen");
|
||||
m_config_changed = ConfigChangedEvent::Register(
|
||||
[this](u32 bits) {
|
||||
if (bits & (CONFIG_CHANGE_BIT_ASPECT_RATIO))
|
||||
Update();
|
||||
},
|
||||
"Widescreen");
|
||||
|
||||
// VertexManager doesn't maintain statistics in Wii mode.
|
||||
if (!SConfig::GetInstance().bWii)
|
||||
@ -28,7 +30,6 @@ WidescreenManager::WidescreenManager()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void WidescreenManager::Update()
|
||||
{
|
||||
if (SConfig::GetInstance().bWii)
|
||||
@ -110,4 +111,4 @@ void WidescreenManager::DoState(PointerWrap& p)
|
||||
{
|
||||
m_was_orthographically_anamorphic = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user