Rename SwitchKeymap() to SwitchKeymapById()

This commit is contained in:
László Monda
2018-03-30 12:46:30 +02:00
parent ecf1f1ac32
commit 308a71e4a3
4 changed files with 6 additions and 6 deletions
@@ -50,10 +50,10 @@ void UsbCommand_ApplyConfig(void)
if (AllKeymaps[keymapId].abbreviationLen == oldKeymapAbbreviationLen &&
!memcmp(oldKeymapAbbreviation, AllKeymaps[keymapId].abbreviation, oldKeymapAbbreviationLen))
{
SwitchKeymap(keymapId);
SwitchKeymapById(keymapId);
return;
}
}
SwitchKeymap(DefaultKeymapIndex);
SwitchKeymapById(DefaultKeymapIndex);
}