Controller: Make InAnalogMode() virtual

This commit is contained in:
Connor McLaughlin
2022-10-09 14:10:42 +10:00
parent 21da5036c0
commit 4feb5ad548
6 changed files with 20 additions and 1 deletions

View File

@ -53,6 +53,11 @@ u32 Controller::GetButtonStateBits() const
return 0;
}
bool Controller::InAnalogMode() const
{
return false;
}
std::optional<u32> Controller::GetAnalogInputBytes() const
{
return std::nullopt;