summaryrefslogtreecommitdiff
path: root/apps/plugins/oscilloscope.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/oscilloscope.c')
-rw-r--r--apps/plugins/oscilloscope.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/oscilloscope.c b/apps/plugins/oscilloscope.c
index 5c709012e7..52cef65d64 100644
--- a/apps/plugins/oscilloscope.c
+++ b/apps/plugins/oscilloscope.c
@@ -431,7 +431,7 @@ int font_height = 8;
431 431
432/* implementation */ 432/* implementation */
433 433
434void anim_horizontal(int cur_left, int cur_right) 434static void anim_horizontal(int cur_left, int cur_right)
435{ 435{
436 int cur_x, x; 436 int cur_x, x;
437 int left, right, dl, dr; 437 int left, right, dl, dr;
@@ -609,7 +609,7 @@ void anim_horizontal(int cur_left, int cur_right)
609 last_pos = cur_x; 609 last_pos = cur_x;
610} 610}
611 611
612void anim_vertical(int cur_left, int cur_right) 612static void anim_vertical(int cur_left, int cur_right)
613{ 613{
614 int cur_y, y; 614 int cur_y, y;
615 int left, right, dl, dr; 615 int left, right, dl, dr;
@@ -784,7 +784,7 @@ void anim_vertical(int cur_left, int cur_right)
784 last_pos = cur_y; 784 last_pos = cur_y;
785} 785}
786 786
787void cleanup(void) 787static void cleanup(void)
788{ 788{
789#if LCD_DEPTH > 1 789#if LCD_DEPTH > 1
790 rb->lcd_set_foreground(LCD_DEFAULT_FG); 790 rb->lcd_set_foreground(LCD_DEFAULT_FG);