================= CL_JoystickEvent Joystick values stay set until changed ================= */
| 463 | ================= |
| 464 | */ |
| 465 | void CL_JoystickEvent( int axis, int value, int time ) { |
| 466 | if ( axis < 0 || axis >= MAX_JOYSTICK_AXIS ) { |
| 467 | Com_Error( ERR_DROP, "CL_JoystickEvent: bad axis %i", axis ); |
| 468 | } |
| 469 | cl.joystickAxis[axis] = value; |
| 470 | } |
| 471 | |
| 472 | /* |
| 473 | ================= |
no test coverage detected