summaryrefslogtreecommitdiff
path: root/apps/recorder/recording.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder/recording.c')
-rw-r--r--apps/recorder/recording.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index bf1a37a1af..e866a4fac6 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -123,11 +123,11 @@ void adjust_cursor(void)
123 123
124unsigned int frame_times[] = 124unsigned int frame_times[] =
125{ 125{
126 2400, /* 48kHz */
127 2612, /* 44.1kHz */ 126 2612, /* 44.1kHz */
127 2400, /* 48kHz */
128 3600, /* 32kHz */ 128 3600, /* 32kHz */
129 2400, /* 24kHz */
130 2612, /* 22.05kHz */ 129 2612, /* 22.05kHz */
130 2400, /* 24kHz */
131 3200 /* 16kHz */ 131 3200 /* 16kHz */
132}; 132};
133 133
@@ -187,6 +187,7 @@ bool recording_screen(void)
187 187
188 while(!done) 188 while(!done)
189 { 189 {
190 yield();
190 button = button_get(false); 191 button = button_get(false);
191 switch(button) 192 switch(button)
192 { 193 {