You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (ev2[1].type == 1 && ev2[1].value == 1) //Only extra buttons
switch (ev2[1].code) {
case 275:
case 276:
chooseAction(ev2[1].code - OFFSET, 1);
break;
// do nothing on default
}
should be
if (ev2[1].type == 1) //Only extra buttons
switch (ev2[1].code) {
case 275:
case 276:
chooseAction(ev2[1].code - OFFSET, ev2[1].value);
break;
// do nothing on default
}
The current version makes people unable to run things when releasing the 13th and 14th buttons.
I also suggest "upgrading" to my version for an easier to edit code using classes ;)
The text was updated successfully, but these errors were encountered:
if (ev2[1].type == 1 && ev2[1].value == 1) //Only extra buttons
switch (ev2[1].code) {
case 275:
case 276:
chooseAction(ev2[1].code - OFFSET, 1);
break;
// do nothing on default
}
should be
if (ev2[1].type == 1) //Only extra buttons
switch (ev2[1].code) {
case 275:
case 276:
chooseAction(ev2[1].code - OFFSET, ev2[1].value);
break;
// do nothing on default
}
The current version makes people unable to run things when releasing the 13th and 14th buttons.
I also suggest "upgrading" to my version for an easier to edit code using classes ;)
The text was updated successfully, but these errors were encountered: