]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Fix warnings when ACTION_ONESHOT is disabled
authorFred Sundvik <fsundvik@gmail.com>
Wed, 12 Apr 2017 07:04:19 +0000 (10:04 +0300)
committerFred Sundvik <fsundvik@gmail.com>
Thu, 13 Apr 2017 13:00:29 +0000 (16:00 +0300)
tmk_core/common/action.c

index 94de36918d23f9244b1ea399aca753db86590bc6..4ba1cc251a78f828cf2d5424c24bea2ec20e59f5 100644 (file)
@@ -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);