Skip to content

Commit

Permalink
Fix IController::OutputBuffer() not being virtual
Browse files Browse the repository at this point in the history
  • Loading branch information
cathery committed Nov 9, 2019
1 parent 01d20c0 commit bd88cd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ControllerUSB/include/IController.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class IController
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; }
};

0 comments on commit bd88cd1

Please sign in to comment.