summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/debug_menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 8f28788585..e863911602 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -123,7 +123,7 @@
123#endif 123#endif
124 124
125/* wrapper function to format a string and print it */ 125/* wrapper function to format a string and print it */
126static void debug_printf(int y, const unsigned char *fmt, ...) 126void debug_printf(int y, const unsigned char *fmt, ...)
127{ 127{
128 va_list ap; 128 va_list ap;
129 char buf[128]; 129 char buf[128];
@@ -2456,7 +2456,7 @@ static bool dbg_scrollwheel(void)
2456 2456
2457 /* show effective accelerated scrollspeed */ 2457 /* show effective accelerated scrollspeed */
2458 speed = button_apply_acceleration( (1<<31)|(1<<24)|wheel_velocity); 2458 speed = button_apply_acceleration( (1<<31)|(1<<24)|wheel_velocity);
2459 debug_printf(6 "accel. speed: %4d", speed); 2459 debug_printf(6, "accel. speed: %4d", speed);
2460 2460
2461 lcd_update(); 2461 lcd_update();
2462 } 2462 }