summaryrefslogtreecommitdiff
path: root/apps/recorder/bounce.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder/bounce.c')
-rw-r--r--apps/recorder/bounce.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/recorder/bounce.c b/apps/recorder/bounce.c
index 6b500964f0..cb080a0d00 100644
--- a/apps/recorder/bounce.c
+++ b/apps/recorder/bounce.c
@@ -24,6 +24,7 @@
24#include "lcd.h" 24#include "lcd.h"
25#include "button.h" 25#include "button.h"
26#include "kernel.h" 26#include "kernel.h"
27#include "menu.h"
27 28
28#ifdef SIMULATOR 29#ifdef SIMULATOR
29#include <stdio.h> 30#include <stdio.h>
@@ -83,7 +84,7 @@ static void loopit(void)
83} 84}
84 85
85 86
86void bounce(void) 87Menu bounce(void)
87{ 88{
88 int w, h; 89 int w, h;
89 char *off = "[Off] to stop"; 90 char *off = "[Off] to stop";
@@ -126,6 +127,8 @@ void bounce(void)
126 lcd_update(); 127 lcd_update();
127 sleep(HZ); 128 sleep(HZ);
128 loopit(); 129 loopit();
130
131 return MENU_OK;
129} 132}
130 133
131#endif 134#endif