1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-21 17:16:44 +00:00

Shifts essential modifiers up to the Keyboard class.

I had forgotten that mappers are not exposed.
This commit is contained in:
Thomas Harte
2019-09-22 13:48:50 -04:00
parent 8f88addf9f
commit 077c7d767f
8 changed files with 27 additions and 20 deletions
+1 -1
View File
@@ -10,7 +10,7 @@
using namespace KeyboardMachine;
MappedMachine::MappedMachine() {
MappedMachine::MappedMachine(const std::set<Inputs::Keyboard::Key> &essential_modifiers) : keyboard_(essential_modifiers) {
keyboard_.set_delegate(this);
}