XBOX 360 Racing Wheel for XBOX ONE - Forza 5
This adjusts the deadzone on the XBOX 360 Racing Wheel in order for it to be used with Forza 5 on XBOX ONE. You will also need to adjust the deadzone in the software on Forza 5 (Wheel Inner) to be 0.
|
RATE
|
- Code: Select all
main {
if(get_val(XB1_LX)<0){
if(get_val(XB1_LX)>-77){
set_val(XB1_LX, get_val(XB1_LX) - 23);
}else{ set_val(XB1_LX, -100) };
}
if(get_val(XB1_LX)>0){
if(get_val(XB1_LX)<77){
set_val(XB1_LX, get_val(XB1_LX) + 23);
}else{ set_val(XB1_LX, 100) };
}
}