Windows XP
Microsoft Xbox S-type using XBCD 0.2.6
even if i assign the x button to another button that works (such as the one y is assigned to) it doesn't work.
i was able to get it to work before, somehow, though i can't for the life of me work out how, or repeat it.
the way i know somethings wrong, is that when the plugin is enabled, the x button assigned in the main input settings doesn't work either.
hey Nherve, have you tried
Code:
case 0: //X
val&=~(1<<15);
break;
case 1: //Y
val&=~(1<<17);
break;
case 12: //Debug
val&=(1<<18);
break;
default: //Others
val&=~(1<<(i-2));
break;
}
}else{
switch(i){
case 0: //X
val|=(1<<15);
break;
case 1: //Y
val|=(1<<17);
break;
case 12: //Debug
val|=(1<<18);
break;
default: //Others
val|=(1<<(i-2));
break;