diff options
| author | tmk <nobody@nowhere> | 2013-02-20 15:52:32 +0900 |
|---|---|---|
| committer | tmk <nobody@nowhere> | 2013-02-20 15:52:32 +0900 |
| commit | c3d57b69e02fce40455c96f4a9ac6b68b89ce027 (patch) | |
| tree | cafa784fcc2c8ba91827d2417d57c740570b8ac4 /common/keymap.c | |
| parent | e0f960a576e090808e5cc25c5368441c11f36ea6 (diff) | |
| download | qmk_firmware-c3d57b69e02fce40455c96f4a9ac6b68b89ce027.tar.gz qmk_firmware-c3d57b69e02fce40455c96f4a9ac6b68b89ce027.zip | |
Add keymap clear/reset action
Diffstat (limited to 'common/keymap.c')
| -rw-r--r-- | common/keymap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/keymap.c b/common/keymap.c index 3f13d4497..ddc321052 100644 --- a/common/keymap.c +++ b/common/keymap.c | |||
| @@ -39,7 +39,7 @@ action_t action_for_key(uint8_t layer, key_t key) | |||
| 39 | } | 39 | } |
| 40 | 40 | ||
| 41 | __attribute__ ((weak)) | 41 | __attribute__ ((weak)) |
| 42 | void action_function(keyrecord_t *event, uint8_t id, uint8_t opt) | 42 | void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) |
| 43 | { | 43 | { |
| 44 | } | 44 | } |
| 45 | #else | 45 | #else |
| @@ -70,7 +70,7 @@ action_t action_for_key(uint8_t layer, key_t key) | |||
| 70 | } | 70 | } |
| 71 | } | 71 | } |
| 72 | /* not used for legacy keymap */ | 72 | /* not used for legacy keymap */ |
| 73 | void action_function(keyrecord_t *event, uint8_t id, uint8_t opt) | 73 | void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) |
| 74 | { | 74 | { |
| 75 | } | 75 | } |
| 76 | #endif | 76 | #endif |
