| 778 | } |
| 779 | |
| 780 | PlayerInput* Input::GetController(int id) { |
| 781 | return id >= 0 && id < player_inputs_.size() ? &player_inputs_[id] : NULL; |
| 782 | } |
| 783 | |
| 784 | void Input::ProcessBindings() { |
| 785 | for (auto& open_joystick : open_joysticks_) { |
no test coverage detected