1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-26 19:17:52 +00:00

Implements multitarget joysticks.

This commit is contained in:
Thomas Harte
2018-03-22 11:07:52 -04:00
parent 29921bfa8d
commit bae38497bb
2 changed files with 55 additions and 2 deletions
@@ -31,7 +31,6 @@ class MultiJoystickMachine: public JoystickMachine::Machine {
std::vector<std::unique_ptr<Inputs::Joystick>> &get_joysticks() override;
private:
std::vector<JoystickMachine::Machine *> machines_;
std::vector<std::unique_ptr<Inputs::Joystick>> joysticks_;
};