* Update the status of the TopRider input device. */
| 1531 | * Update the status of the TopRider input device. |
| 1532 | */ |
| 1533 | static void |
| 1534 | UpdateTopRider () |
| 1535 | { |
| 1536 | int x; |
| 1537 | TopRiderData = 0; |
| 1538 | for (x = 0; x < 8; x++) |
| 1539 | { |
| 1540 | if (DTestButton (&TopRiderButtons[x])) |
| 1541 | { |
| 1542 | TopRiderData |= (1 << x); |
| 1543 | } |
| 1544 | } |
| 1545 | } |
| 1546 | |
| 1547 | static ButtConfig FTrainerButtons[12] = { |
| 1548 | MK (O), MK (P), MK (BRACKET_LEFT), |
no test coverage detected