1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-07-24 22:24:23 +00:00

Extends logic for when to fall back on standard keypress logic even in logical mode.

This commit is contained in:
Thomas Harte
2020-03-01 20:25:12 -05:00
parent 611182910a
commit ed18092088
14 changed files with 60 additions and 5 deletions

View File

@@ -51,6 +51,7 @@ class MultiKeyboardMachine: public KeyboardMachine::Machine {
void clear_all_keys() final;
void set_key_state(uint16_t key, bool is_pressed) final;
void type_string(const std::string &) final;
bool can_type(char c) final;
Inputs::Keyboard &get_keyboard() final;
};