summaryrefslogtreecommitdiff
path: root/keyboards/unison
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2023-04-30 18:58:06 +1000
committerGitHub <noreply@github.com>2023-04-30 18:58:06 +1000
commita42d6426d9bbf1ddc15cfe77b3764524269b0d7e (patch)
tree7751396d683469990dc55e2a5f4f0d5eae8f2a69 /keyboards/unison
parent4b8796168913e40de57352c7daa8eb726398aec8 (diff)
Remove use of layout macros for `music_map` (#20634)
Diffstat (limited to 'keyboards/unison')
-rw-r--r--keyboards/unison/v04/v04.c19
1 files changed, 12 insertions, 7 deletions
diff --git a/keyboards/unison/v04/v04.c b/keyboards/unison/v04/v04.c
index d9e8ed9e8b..e0c4e8cee0 100644
--- a/keyboards/unison/v04/v04.c
+++ b/keyboards/unison/v04/v04.c
@@ -17,11 +17,16 @@
#include "quantum.h"
#if defined(AUDIO_ENABLE) && defined(MUSIC_MAP)
-const uint8_t music_map[MATRIX_ROWS][MATRIX_COLS] = LAYOUT_all(
- 0,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,
- 0, 32,33,34,35,36,37,38,39,40,41,42,43,44,45, 46,
- 0, 17,18,19,20,21,22,23,24,25,26,27,28,29,30, 31,
- 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,15,16,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
-);
+const uint8_t music_map[MATRIX_ROWS][MATRIX_COLS] = {
+ { 0, 47, 49, 51, 53, 55, 57, 59, 61, 0},
+ {32, 0, 34, 36, 38, 40, 42, 44, 0, 0},
+ {17, 19, 0, 21, 23, 25, 27, 29, 0, 0},
+ { 1, 3, 5, 0, 7, 9, 11, 13, 15, 0},
+ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
+ { 0, 48, 50, 52, 54, 0, 56, 58, 60, 62},
+ { 0, 33, 35, 37, 39, 41, 0, 43, 45, 46},
+ { 0, 18, 20, 22, 24, 26, 28, 0, 30, 31},
+ { 0, 2, 4, 6, 8, 10, 12, 14, 0, 16},
+ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
+};
#endif