diff options
author | tmk <nobody@nowhere> | 2013-03-10 19:22:54 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-03-10 19:22:54 +0900 |
commit | de8ef18a534163b40e307418b3af603142d5d6b0 (patch) | |
tree | 9f35a4795b40dc6328b9d9385b81460ba47143cb /common/command.c | |
parent | 51050875b7f1dd5216ba46298f95cf3030a36211 (diff) |
Add KEYCONF to eeconfig.c
Diffstat (limited to 'common/command.c')
-rw-r--r-- | common/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/command.c b/common/command.c index b82d1884ce..cf8d969f81 100644 --- a/common/command.c +++ b/common/command.c @@ -133,8 +133,8 @@ static void print_eeprom_config(void) eebyte = eeconfig_read_defalt_layer(); print("defalt_layer: "); print_hex8(eebyte); print("\n"); - eebyte = eeconfig_read_modifier(); - print("modifiers: "); print_hex8(eebyte); print("\n"); + eebyte = eeconfig_read_keyconf(); + print("keyconf: "); print_hex8(eebyte); print("\n"); } static bool command_common(uint8_t code) |