diff options
| author | Peter D'Hoye <peter.dhoye@gmail.com> | 2006-02-17 22:47:56 +0000 |
|---|---|---|
| committer | Peter D'Hoye <peter.dhoye@gmail.com> | 2006-02-17 22:47:56 +0000 |
| commit | 3467ba60b116579a855076b7e993603bf817af93 (patch) | |
| tree | 50f4d1808b47287dc49867920b70ffaf9c852b4d /apps/settings.c | |
| parent | 00811840c9198833e6b234939b1509d52a51c880 (diff) | |
| download | rockbox-3467ba60b116579a855076b7e993603bf817af93.zip rockbox-3467ba60b116579a855076b7e993603bf817af93.tar.gz rockbox-3467ba60b116579a855076b7e993603bf817af93.tar.bz2 rockbox-3467ba60b116579a855076b7e993603bf817af93.tar.xz | |
Patch #1423609 by Martin Scarratt and myself: enables using the backlight as record clipping indicator.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8722 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.c')
| -rw-r--r-- | apps/settings.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/settings.c b/apps/settings.c index d776f3f..1f29e4d 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -540,6 +540,11 @@ static const struct bit_entry hd_bits[] = "mic decimator right gain", NULL }, /* -128...48 */ #endif {1, S_O(scroll_paginated), false, "scroll paginated", off_on }, +#ifdef HAVE_RECORDING +#ifdef CONFIG_BACKLIGHT + {2, S_O(cliplight), 0, "cliplight", "off,main,both,remote" }, +#endif /* CONFIG_BACKLIGHT */ +#endif /*HAVE_RECORDING*/ /* If values are just added to the end, no need to bump the version. */ /* new stuff to be added at the end */ |