diff options
author | Jesse Vincent <jesse@fsck.com> | 2017-10-03 13:24:01 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-03 13:24:01 -0700 |
commit | fbcf8c4ec619c9fd8f912692582168fb22c97980 (patch) | |
tree | f3133ca006383e15f08e07e54d4ba31b64d78db2 /Model01-Firmware.ino | |
parent | 1f614f52c2a5052184e89f462a57e7fe9ae13076 (diff) | |
parent | 22f5337c796ce19c38501916a8d52d5a33429da7 (diff) | |
download | Model01-Firmware-fbcf8c4ec619c9fd8f912692582168fb22c97980.tar.gz Model01-Firmware-fbcf8c4ec619c9fd8f912692582168fb22c97980.zip |
Merge pull request #15 from martinakcsilla/use-does-not-need-sentinel
Remove the NULL from the end of Kaleidoscope.use
Diffstat (limited to 'Model01-Firmware.ino')
-rw-r--r-- | Model01-Firmware.ino | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Model01-Firmware.ino b/Model01-Firmware.ino index b68338f..928b933 100644 --- a/Model01-Firmware.ino +++ b/Model01-Firmware.ino @@ -292,8 +292,8 @@ void setup() { &Macros, // The MouseKeys plugin lets you add keys to your keymap which move the mouse. - &MouseKeys, - NULL); + &MouseKeys + ); // While we hope to improve this in the future, the NumLock plugin // needs to be explicitly told which keymap layer is your numpad layer |