Incorrect joystick id was returned on an inactive ARVR controller

This commit is contained in:
Bastiaan Olij 2020-01-22 18:27:32 +11:00
parent 5127afa812
commit 5cf9f4faeb

View File

@ -295,7 +295,8 @@ int ARVRController::get_joystick_id() const {
ARVRPositionalTracker *tracker = arvr_server->find_by_type_and_id(ARVRServer::TRACKER_CONTROLLER, controller_id);
if (tracker == NULL) {
return 0;
// No tracker? no joystick id... (0 is our first joystick)
return -1;
};
return tracker->get_joy_id();