diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2007-02-18 10:07:27 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2007-02-18 10:07:27 +0000 |
| commit | 3a37f46fc92fe7f9846a4077cc1a985c500d1174 (patch) | |
| tree | 76541ae462f02ede816ab3f9b42f5207f068658c /apps/recorder | |
| parent | da88e84f482c8c96c0d64bf67969b6e9dd9a8379 (diff) | |
| download | rockbox-3a37f46fc92fe7f9846a4077cc1a985c500d1174.zip rockbox-3a37f46fc92fe7f9846a4077cc1a985c500d1174.tar.gz rockbox-3a37f46fc92fe7f9846a4077cc1a985c500d1174.tar.bz2 rockbox-3a37f46fc92fe7f9846a4077cc1a985c500d1174.tar.xz | |
Fix CONFIG_BACKLIGHT warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12393 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder')
| -rw-r--r-- | apps/recorder/peakmeter.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/recorder/peakmeter.c b/apps/recorder/peakmeter.c index 69c5e95..0e729f6 100644 --- a/apps/recorder/peakmeter.c +++ b/apps/recorder/peakmeter.c @@ -34,7 +34,7 @@ #include "peakmeter.h" #include "audio.h" #include "screen_access.h" -#ifdef CONFIG_BACKLIGHT +#if CONFIG_BACKLIGHT #include "backlight.h" #endif #include "action.h" @@ -1009,7 +1009,7 @@ void peak_meter_draw(struct screen *display, struct meter_scales *scales, #ifdef HAVE_RECORDING -#ifdef CONFIG_BACKLIGHT +#if CONFIG_BACKLIGHT /* cliplight */ if ((pm_clip_left || pm_clip_right) && global_settings.cliplight && @@ -1033,7 +1033,7 @@ void peak_meter_draw(struct screen *display, struct meter_scales *scales, } #endif /* HAVE_REMOTE_LCD */ } -#endif /*CONFIG_BACKLIGHT */ +#endif /* CONFIG_BACKLIGHT */ if (trig_status != TRIG_OFF) { int start_trigx, stop_trigx, ycenter; |