summaryrefslogtreecommitdiffstats
path: root/tmk_core/common
diff options
context:
space:
mode:
authorFred Sundvik <fsundvik@gmail.com>2017-04-12 09:04:19 +0200
committerFred Sundvik <fsundvik@gmail.com>2017-04-13 15:00:29 +0200
commit07fc34e962a54f87802f11e9e30ed5891325f07e (patch)
tree49283b57460a0f8dea000327eaa3705d5a47145e /tmk_core/common
parentabda6ff7bbe00792c0ed7edea4a31b9dec6c13e8 (diff)
downloadqmk_firmware-07fc34e962a54f87802f11e9e30ed5891325f07e.tar.gz
qmk_firmware-07fc34e962a54f87802f11e9e30ed5891325f07e.tar.xz
Fix warnings when ACTION_ONESHOT is disabled
Diffstat (limited to 'tmk_core/common')
-rw-r--r--tmk_core/common/action.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/common/action.c b/tmk_core/common/action.c
index 94de36918..4ba1cc251 100644
--- a/tmk_core/common/action.c
+++ b/tmk_core/common/action.c
@@ -140,7 +140,6 @@ void process_record(keyrecord_t *record)
void process_action(keyrecord_t *record, action_t action)
{
- bool do_release_oneshot = false;
keyevent_t event = record->event;
#ifndef NO_ACTION_TAPPING
uint8_t tap_count = record->tap.count;
@@ -152,6 +151,7 @@ void process_action(keyrecord_t *record, action_t action)
}
#ifndef NO_ACTION_ONESHOT
+ bool do_release_oneshot = false;
// notice we only clear the one shot layer if the pressed key is not a modifier.
if (is_oneshot_layer_active() && event.pressed && !IS_MOD(action.key.code)) {
clear_oneshot_layer_state(ONESHOT_OTHER_KEY_PRESSED);