diff options
author | tmk <nobody@nowhere> | 2013-02-25 15:30:37 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-02-25 15:30:37 +0900 |
commit | 23c32d304bcc5146a575e547bba80ee8d86a2856 (patch) | |
tree | d7826faa7e6d3648cffa21ae163fe1e369caf384 /common/action.c | |
parent | 000f3c4c543e0c4490787ccc3a8920d4ee0692ec (diff) | |
download | firmware-23c32d304bcc5146a575e547bba80ee8d86a2856.tar.gz firmware-23c32d304bcc5146a575e547bba80ee8d86a2856.tar.bz2 firmware-23c32d304bcc5146a575e547bba80ee8d86a2856.zip |
Add MACRO action
Diffstat (limited to 'common/action.c')
-rw-r--r-- | common/action.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/common/action.c b/common/action.c index 294ce00fb..fc8818030 100644 --- a/common/action.c +++ b/common/action.c @@ -23,8 +23,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "command.h" #include "util.h" #include "debug.h" -#include "action.h" #include "layer_switch.h" +#include "action_macro.h" +#include "action.h" static void process_action(keyrecord_t *record); @@ -671,7 +672,7 @@ static void process_action(keyrecord_t *record) /* Extentions */ case ACT_MACRO: - // TODO + action_macro_play(action_get_macro(record, action.func.id, action.func.opt)); break; case ACT_COMMAND: break; |