diff options
author | Bertrik Sikken <bertrik@sikken.nl> | 2010-11-08 20:45:14 +0000 |
---|---|---|
committer | Bertrik Sikken <bertrik@sikken.nl> | 2010-11-08 20:45:14 +0000 |
commit | 0322ab1d194cb9e3b3d0f0925ccc7c9edfb8c254 (patch) | |
tree | 7ff98609a3ccdf28c9f043a6d3413354abef6112 /apps | |
parent | 23cf4ad82fdfcc2002ec98ccc7588f9db7d0f523 (diff) | |
download | rockbox-0322ab1d194cb9e3b3d0f0925ccc7c9edfb8c254.tar.gz rockbox-0322ab1d194cb9e3b3d0f0925ccc7c9edfb8c254.zip |
Change an #ifdef CONFIG_TUNER into #if CONFIG_TUNER (CONFIG_TUNER is always defined, just 0 if no there is no tuner)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28536 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/keymaps/keymap-ipod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/keymaps/keymap-ipod.c b/apps/keymaps/keymap-ipod.c index b2697d8660..3b6bee76b8 100644 --- a/apps/keymaps/keymap-ipod.c +++ b/apps/keymaps/keymap-ipod.c @@ -364,7 +364,7 @@ static const struct button_mapping* get_context_mapping_remote( int context ) case CONTEXT_CUSTOM|CONTEXT_TREE: return remote_button_context_tree; -#ifdef CONFIG_TUNER +#if CONFIG_TUNER case CONTEXT_FM: return remote_button_context_radio; #endif |