I_StartFrame
| 626 | // I_StartFrame |
| 627 | // |
| 628 | void I_StartFrame () |
| 629 | { |
| 630 | if (use_joystick) |
| 631 | { |
| 632 | for (int i = 0; i < NUM_JOYDEVICES; ++i) |
| 633 | { |
| 634 | if (JoyDevices[i] != NULL) |
| 635 | { |
| 636 | JoyDevices[i]->ProcessInput(); |
| 637 | } |
| 638 | } |
| 639 | } |
| 640 | } |
| 641 | |
| 642 | void I_GetAxes(float axes[NUM_JOYAXIS]) |
| 643 | { |
no test coverage detected