diff options
author | Michael F. Lamb <mike@datagrok.org> | 2018-09-05 13:52:29 -0700 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-09-05 13:52:29 -0700 |
commit | e72d07c22b858cf0613f0e340e2ef11bb3fa5c92 (patch) | |
tree | e819d9f3f237c9fcbd3da4c62367842f0c1afe30 /keyboards/mitosis | |
parent | 155850187de7897dcd8f216d704fecce446f0a68 (diff) | |
download | qmk_firmware-e72d07c22b858cf0613f0e340e2ef11bb3fa5c92.tar.gz qmk_firmware-e72d07c22b858cf0613f0e340e2ef11bb3fa5c92.zip |
Keymap: mitosis/datagrok: bug fix (#3854)
I don't know how this slipped past the test suite in the last merge, but
this syntax I tried is invalid and doesn't compile. Fixed.
Diffstat (limited to 'keyboards/mitosis')
-rw-r--r-- | keyboards/mitosis/keymaps/datagrok/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/mitosis/keymaps/datagrok/keymap.c b/keyboards/mitosis/keymaps/datagrok/keymap.c index ae3b954700..d8c20bc439 100644 --- a/keyboards/mitosis/keymaps/datagrok/keymap.c +++ b/keyboards/mitosis/keymaps/datagrok/keymap.c @@ -3,7 +3,7 @@ #ifdef AUDIO_ENABLE #include "audio.h" #ifdef DEFAULT_LAYER_SONGS -extern float default_layer_songs[][][]; +extern float default_layer_songs[][16][2]; #endif #endif |