summaryrefslogtreecommitdiff
path: root/apps/recorder/recording.c
diff options
context:
space:
mode:
authorJörg Hohensohn <hohensoh@rockbox.org>2004-10-09 12:00:53 +0000
committerJörg Hohensohn <hohensoh@rockbox.org>2004-10-09 12:00:53 +0000
commitd885a2690a07f1e9503dd9f4a292f187f52467c2 (patch)
tree87bf2ad4501aca0cadddf84be9a5798cd7f4d19a /apps/recorder/recording.c
parentc259bfdabe168e5d4f834e4c817f7610fe5d09fe (diff)
downloadrockbox-d885a2690a07f1e9503dd9f4a292f187f52467c2.tar.gz
rockbox-d885a2690a07f1e9503dd9f4a292f187f52467c2.zip
minor improvement: allow option cycling for Ondio
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5234 a1c6a512-1295-4272-9138-f99709370657
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 {