diff --git a/libs/video/targets/joy.c b/libs/video/targets/joy.c index 70ce24b11..8c3150136 100644 --- a/libs/video/targets/joy.c +++ b/libs/video/targets/joy.c @@ -134,6 +134,15 @@ JOY_Move (void) if (joy_axes[i].current) viewdelta.position[1] += joy_axes[i].current * mult_joy; break; +// Futureproofing + case 6: + if (joy_axes[i].current) + viewdelta.angles[ROLL] += joy_axes[i].current * mult_joy; + break; + case -6: + if (joy_axes[i].current) + viewdelta.angles[ROLL] -= joy_axes[i].current * mult_joy; + break; default: break; }