diff options
author | tmk <nobody@nowhere> | 2013-04-04 16:29:44 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-04-04 16:29:44 +0900 |
commit | f9a7e224a4de28e52d268c801dc12c8de8c79b3f (patch) | |
tree | 063e0e4db5a4eaa1342a6ba8f20352a08b4e9b76 /common/command.c | |
parent | ebe798f081ce018826dc882a40fc77ec8a0ad023 (diff) |
Fix ACT_MODS action and switch_default_layer command
Diffstat (limited to 'common/command.c')
-rw-r--r-- | common/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/command.c b/common/command.c index dc06c6da35..3a1fcb186e 100644 --- a/common/command.c +++ b/common/command.c @@ -574,7 +574,7 @@ static uint8_t numkey2num(uint8_t code) static void switch_default_layer(uint8_t layer) { print("switch_default_layer: "); print_dec(biton32(default_layer_state)); + print(" to "); print_dec(layer); print("\n"); default_layer_set(layer); - print(" to "); print_dec(biton32(default_layer_state)); print("\n"); clear_keyboard(); } |