astyle to pad operators

pull/365/head
Jesse Vincent 7 years ago
parent 8782cea7c1
commit 36a0632d6d
No known key found for this signature in database
GPG Key ID: 122F5DF7108E4046

@ -116,7 +116,7 @@ bool EEPROMKeymap::focusKeymapTransfer(const char *command) {
for (uint8_t row = 0; row < ROWS; row++) { for (uint8_t row = 0; row < ROWS; row++) {
for (uint8_t col = 0; col < COLS; col++) { for (uint8_t col = 0; col < COLS; col++) {
Key k = Layer.getKeyFromPROGMEM(layer, row, col); Key k = Layer.getKeyFromPROGMEM(layer, row, col);
uint16_t pos =((layer * ROWS * COLS) + (row * COLS) + col); uint16_t pos = ((layer * ROWS * COLS) + (row * COLS) + col);
updateKey(pos, k); updateKey(pos, k);
} }

Loading…
Cancel
Save