You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AM2R-TimeTrials/scripts/input_gamepad_find.gml

7 lines
90 B

for (var i = 0; i < 12; i++) {
if (gamepad_is_connected(i)) {
return i;
}
}
return 0;