Activate the action set if there is only one present.

This commit is contained in:
Mr_Goldberg 2019-09-14 18:32:26 -04:00
parent 03a1627d07
commit ee4722cb33
No known key found for this signature in database
GPG Key ID: 8597D87419DEF278
1 changed files with 8 additions and 1 deletions

View File

@ -232,7 +232,14 @@ bool Init()
GamepadUpdate();
for (int i = 1; i < 5; ++i) {
controllers.insert(std::pair<ControllerHandle_t, struct Controller_Action>(i, Controller_Action(i)));
struct Controller_Action cont_action(i);
//Activate the action set if there is only one present.
//TODO: I don't know if one gets activated by default when there's more than one
if (action_handles.size() == 1) {
cont_action.activate_action_set(action_handles.begin()->second, controller_maps);
}
controllers.insert(std::pair<ControllerHandle_t, struct Controller_Action>(i, cont_action));
}
return true;