Skip to content

Commit

Permalink
Remove hex print code.
Browse files Browse the repository at this point in the history
  • Loading branch information
333fred authored and jackhumbert committed Aug 8, 2017
1 parent 916c4d7 commit 02f4057
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion quantum/process_keycode/process_key_lock.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
#define SET_KEY_STATE(code) SET_KEY_ARRAY_STATE(code, (GET_KEY_ARRAY(code) | SHIFT(GET_CODE_INDEX(code))))
#define UNSET_KEY_STATE(code) SET_KEY_ARRAY_STATE(code, (GET_KEY_ARRAY(code)) & ~(SHIFT(GET_CODE_INDEX(code))))
#define IS_STANDARD_KEYCODE(code) ((code) <= 0xFF)
#define print_hex64(num) do { print_hex32((num & 0xFFFFFFFF00000000) >> 32); print_hex32(num & 0x00000000FFFFFFFF); } while (0)

// Locked key state. This is an array of 256 bits, one for each of the standard keys supported qmk.
uint64_t key_state[4] = { 0x0, 0x0, 0x0, 0x0 };
Expand Down

0 comments on commit 02f4057

Please sign in to comment.