Move the opening braces of some functions onto their own lines

This commit is contained in:
Eric Tang
2017-08-08 16:20:48 -07:00
parent 17fd91c203
commit 2b97758ad2
4 changed files with 32 additions and 16 deletions

View File

@@ -12,7 +12,8 @@ uint8_t AllKeymapsCount;
uint8_t DefaultKeymapIndex;
uint8_t CurrentKeymapIndex = 0;
void Keymaps_Switch(uint8_t index) {
void Keymaps_Switch(uint8_t index)
{
CurrentKeymapIndex = index;
UserConfigBuffer.offset = AllKeymaps[index].offset;
ParseKeymap(&UserConfigBuffer, index, AllKeymapsCount);