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.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index 310d0b283d..34e22965a2 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -134,7 +134,11 @@ void adjust_cursor(void)
134 cursor = 0; 134 cursor = 0;
135 135
136 if(cursor > 2) 136 if(cursor > 2)
137#ifdef REC_PREV /* normal case, stop at the end */
137 cursor = 2; 138 cursor = 2;
139#else
140 cursor = 0; /* only 1 button, cycle through */
141#endif
138 } 142 }
139 else 143 else
140 { 144 {