| 721 | } |
| 722 | |
| 723 | void MidiController::KeyReleased(int key) |
| 724 | { |
| 725 | if (mDeviceIn == "keyboard") |
| 726 | { |
| 727 | QwertyController* qwerty = dynamic_cast<QwertyController*>(mNonstandardController); |
| 728 | if (qwerty != nullptr) |
| 729 | qwerty->OnKeyReleased(KeyToLower(key)); |
| 730 | } |
| 731 | } |
| 732 | |
| 733 | bool MidiController::ShouldConsumeKey(int key) |
| 734 | { |
nothing calls this directly
no test coverage detected