Fully implement parsePlayMacroAction

This commit is contained in:
Eric Tang
2017-08-09 11:21:45 -07:00
parent b0b659940d
commit abc0b994a4

View File

@@ -71,7 +71,8 @@ static parser_error_t parsePlayMacroAction(key_action_t *keyAction, config_buffe
{
uint8_t macroIndex = readUInt8(buffer);
(void)macroIndex;
keyAction->type = KeyActionType_SwitchKeymap;
keyAction->playMacro.macroId = macroIndex;
return ParserError_Success;
}