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

@ -62,7 +62,7 @@ public:
static std::unique_ptr<AnalogController> Create(u32 index);
ControllerType GetType() const override;
bool InAnalogMode() const { return m_analog_mode; }
bool InAnalogMode() const override;
void Reset() override;
bool DoState(StateWrapper& sw, bool ignore_input_state) override;