1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-07-01 01:38:44 +00:00

Fix IController::OutputBuffer() not being virtual

This commit is contained in:
cathery 2019-11-10 00:02:53 +03:00
parent 01d20c0c46
commit bd88cd1008

View File

@ -34,7 +34,7 @@ public:
virtual Status SetRumble(uint8_t strong_magnitude, uint8_t weak_magnitude) { return 1; }
virtual bool IsControllerActive() { return true; }
Status OutputBuffer() { return 1; };
virtual Status OutputBuffer() { return 1; };
virtual ControllerConfig *GetConfig() { return nullptr; }
};