diff options
| author | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-10-09 12:00:53 +0000 |
|---|---|---|
| committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-10-09 12:00:53 +0000 |
| commit | d885a2690a07f1e9503dd9f4a292f187f52467c2 (patch) | |
| tree | 87bf2ad4501aca0cadddf84be9a5798cd7f4d19a | |
| parent | c259bfdabe168e5d4f834e4c817f7610fe5d09fe (diff) | |
| download | rockbox-d885a2690a07f1e9503dd9f4a292f187f52467c2.zip rockbox-d885a2690a07f1e9503dd9f4a292f187f52467c2.tar.gz rockbox-d885a2690a07f1e9503dd9f4a292f187f52467c2.tar.bz2 rockbox-d885a2690a07f1e9503dd9f4a292f187f52467c2.tar.xz | |
minor improvement: allow option cycling for Ondio
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5234 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/recorder/recording.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c index 310d0b2..34e2296 100644 --- a/apps/recorder/recording.c +++ b/apps/recorder/recording.c @@ -134,7 +134,11 @@ void adjust_cursor(void) cursor = 0; if(cursor > 2) +#ifdef REC_PREV /* normal case, stop at the end */ cursor = 2; +#else + cursor = 0; /* only 1 button, cycle through */ +#endif } else { |