summaryrefslogtreecommitdiff
path: root/apps/menus/display_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/menus/display_menu.c')
-rw-r--r--apps/menus/display_menu.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/apps/menus/display_menu.c b/apps/menus/display_menu.c
index 60ed71cbd0..e5baf8ac1e 100644
--- a/apps/menus/display_menu.c
+++ b/apps/menus/display_menu.c
@@ -182,9 +182,11 @@ MENUITEM_SETTING(remote_contrast,
182 &global_settings.remote_contrast, NULL); 182 &global_settings.remote_contrast, NULL);
183MENUITEM_SETTING(remote_invert, 183MENUITEM_SETTING(remote_invert,
184 &global_settings.remote_invert, NULL); 184 &global_settings.remote_invert, NULL);
185 185
186#ifdef HAVE_LCD_FLIP
186MENUITEM_SETTING(remote_flip_display, 187MENUITEM_SETTING(remote_flip_display,
187 &global_settings.remote_flip_display, flipdisplay_callback); 188 &global_settings.remote_flip_display, flipdisplay_callback);
189#endif
188 190
189#ifdef HAVE_REMOTE_LCD_TICKING 191#ifdef HAVE_REMOTE_LCD_TICKING
190static int ticking_callback(int action,const struct menu_item_ex *this_item) 192static int ticking_callback(int action,const struct menu_item_ex *this_item)
@@ -212,7 +214,11 @@ MAKE_MENU(lcd_remote_settings, ID2P(LANG_LCD_REMOTE_MENU),
212 &remote_backlight_on_button_hold, 214 &remote_backlight_on_button_hold,
213#endif 215#endif
214 &remote_caption_backlight, &remote_bl_filter_first_keypress, 216 &remote_caption_backlight, &remote_bl_filter_first_keypress,
215 &remote_contrast, &remote_invert, &remote_flip_display 217 &remote_contrast, &remote_invert
218
219#ifdef HAVE_LCD_FLIP
220 ,&remote_flip_display
221#endif
216#ifdef HAVE_REMOTE_LCD_TICKING 222#ifdef HAVE_REMOTE_LCD_TICKING
217 ,&remote_reduce_ticking 223 ,&remote_reduce_ticking
218#endif 224#endif