VideoCommon: Add 'Active' state to FreelookCamera to future proof if we ever add multiple cameras

This commit is contained in:
iwubcode
2020-06-18 23:49:07 -05:00
parent a37fd8c5d9
commit bcf63c463b
3 changed files with 10 additions and 2 deletions

View File

@ -319,3 +319,8 @@ void FreeLookCamera::SetClean()
{
m_dirty = false;
}
bool FreeLookCamera::IsActive() const
{
return FreeLook::GetActiveConfig().enabled;
}