* Update the status of the Family KeyBoard. */
| 1440 | * Update the status of the Family KeyBoard. |
| 1441 | */ |
| 1442 | static void UpdateFKB () |
| 1443 | { |
| 1444 | int x; |
| 1445 | |
| 1446 | for (x = 0; x < 0x48; x++) |
| 1447 | { |
| 1448 | fkbkeys[x] = 0; |
| 1449 | |
| 1450 | if (DTestButton (&fkbmap[x])) |
| 1451 | { |
| 1452 | fkbkeys[x] = 1; |
| 1453 | } |
| 1454 | } |
| 1455 | } |
| 1456 | |
| 1457 | static ButtConfig HyperShotButtons[4] = { |
| 1458 | MK (Q), MK (W), MK (E), MK (R) |
no test coverage detected