| 564 | } |
| 565 | |
| 566 | void SolveActionCollisions() |
| 567 | { |
| 568 | // Block simultaneous Left+Right actions. |
| 569 | if (IsHeld(In::Left) && IsHeld(In::Right)) |
| 570 | { |
| 571 | ClearAction(In::Left); |
| 572 | ClearAction(In::Right); |
| 573 | } |
| 574 | } |
| 575 | |
| 576 | static void HandleHotkeyActions() |
| 577 | { |
no test coverage detected