diff options
Diffstat (limited to 'tmk_core/common/command.c')
-rw-r--r-- | tmk_core/common/command.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tmk_core/common/command.c b/tmk_core/common/command.c index 59aa4e4d3..34c4b36b1 100644 --- a/tmk_core/common/command.c +++ b/tmk_core/common/command.c | |||
@@ -550,22 +550,22 @@ static void mousekey_param_print(void) { | |||
550 | # if !defined(NO_PRINT) && !defined(USER_PRINT) | 550 | # if !defined(NO_PRINT) && !defined(USER_PRINT) |
551 | print("\n\t- Values -\n"); | 551 | print("\n\t- Values -\n"); |
552 | print("1: delay(*10ms): "); | 552 | print("1: delay(*10ms): "); |
553 | pdec(mk_delay); | 553 | print_dec(mk_delay); |
554 | print("\n"); | 554 | print("\n"); |
555 | print("2: interval(ms): "); | 555 | print("2: interval(ms): "); |
556 | pdec(mk_interval); | 556 | print_dec(mk_interval); |
557 | print("\n"); | 557 | print("\n"); |
558 | print("3: max_speed: "); | 558 | print("3: max_speed: "); |
559 | pdec(mk_max_speed); | 559 | print_dec(mk_max_speed); |
560 | print("\n"); | 560 | print("\n"); |
561 | print("4: time_to_max: "); | 561 | print("4: time_to_max: "); |
562 | pdec(mk_time_to_max); | 562 | print_dec(mk_time_to_max); |
563 | print("\n"); | 563 | print("\n"); |
564 | print("5: wheel_max_speed: "); | 564 | print("5: wheel_max_speed: "); |
565 | pdec(mk_wheel_max_speed); | 565 | print_dec(mk_wheel_max_speed); |
566 | print("\n"); | 566 | print("\n"); |
567 | print("6: wheel_time_to_max: "); | 567 | print("6: wheel_time_to_max: "); |
568 | pdec(mk_wheel_time_to_max); | 568 | print_dec(mk_wheel_time_to_max); |
569 | print("\n"); | 569 | print("\n"); |
570 | # endif /* !NO_PRINT */ | 570 | # endif /* !NO_PRINT */ |
571 | } | 571 | } |