summaryrefslogtreecommitdiffstats
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 @@
#include "lcd.h"
#include "button.h"
#include "kernel.h"
+#include "menu.h"
#ifdef SIMULATOR
#include <stdio.h>
@@ -83,7 +84,7 @@ static void loopit(void)
}
-void bounce(void)
+Menu bounce(void)
{
int w, h;
char *off = "[Off] to stop";
@@ -126,6 +127,8 @@ void bounce(void)
lcd_update();
sleep(HZ);
loopit();
+
+ return MENU_OK;
}
#endif