summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Goode <jeffg7@gmail.com>2010-05-09 02:07:42 +0000
committerJeffrey Goode <jeffg7@gmail.com>2010-05-09 02:07:42 +0000
commit847bd281e2cb78ecec493b8181327f4acd662b12 (patch)
treecc89fd157a4b6083b61eee46b324a6f5b3672e22
parent1ad76ff25be3f86b9467fc6f4171dbf6895b419c (diff)
downloadrockbox-847bd281e2cb78ecec493b8181327f4acd662b12.tar.gz
rockbox-847bd281e2cb78ecec493b8181327f4acd662b12.zip
Fix red
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25906 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/gui/wps.c2
-rw-r--r--apps/tree.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/apps/gui/wps.c b/apps/gui/wps.c
index 96f66eeb50..4eda866d27 100644
--- a/apps/gui/wps.c
+++ b/apps/gui/wps.c
@@ -886,10 +886,12 @@ long gui_wps_show(void)
886#endif 886#endif
887 switch(button) 887 switch(button)
888 { 888 {
889#ifdef HAVE_HOTKEY
889 case ACTION_WPS_HOTKEY: 890 case ACTION_WPS_HOTKEY:
890 if (!global_settings.hotkey_wps) 891 if (!global_settings.hotkey_wps)
891 break; 892 break;
892 /* fall through */ 893 /* fall through */
894#endif
893 case ACTION_WPS_CONTEXT: 895 case ACTION_WPS_CONTEXT:
894 { 896 {
895 bool hotkey = button == ACTION_WPS_HOTKEY; 897 bool hotkey = button == ACTION_WPS_HOTKEY;
diff --git a/apps/tree.c b/apps/tree.c
index dde4b57b8a..97ddfbb44d 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -755,10 +755,12 @@ static int dirbrowse()
755 break; 755 break;
756#endif 756#endif
757 757
758#ifdef HAVE_HOTKEY
758 case ACTION_TREE_HOTKEY: 759 case ACTION_TREE_HOTKEY:
759 if (!global_settings.hotkey_tree) 760 if (!global_settings.hotkey_tree)
760 break; 761 break;
761 /* fall through */ 762 /* fall through */
763#endif
762 case ACTION_STD_CONTEXT: 764 case ACTION_STD_CONTEXT:
763 { 765 {
764 bool hotkey = button == ACTION_TREE_HOTKEY; 766 bool hotkey = button == ACTION_TREE_HOTKEY;