summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorFrank Gevaerts <frank@gevaerts.be>2012-08-28 21:36:23 +0200
committerFrank Gevaerts <frank@gevaerts.be>2012-08-28 21:36:23 +0200
commite6fd7d2d1f361bdc28ea1e47a41bc715fa54996a (patch)
treec096b90c46aa483152b18472f6f24f08dd312c06 /apps
parent4999913c502f6529b6b1ae3f4ce18b2128845778 (diff)
Make the recorder build with HAVE_LCD_FLIP disabled.
Change-Id: I5875dc5c59606867299cc0e30d869b817e879ade
Diffstat (limited to 'apps')
-rw-r--r--apps/gui/quickscreen.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/gui/quickscreen.c b/apps/gui/quickscreen.c
index df295a8a95..5c8a7705ae 100644
--- a/apps/gui/quickscreen.c
+++ b/apps/gui/quickscreen.c
@@ -439,7 +439,11 @@ bool quick_screen_f3(int button_enter)
qs.items[QUICKSCREEN_RIGHT] =
find_setting(&global_settings.statusbar, NULL);
qs.items[QUICKSCREEN_BOTTOM] =
+#ifdef HAVE_LCD_FLIP
find_setting(&global_settings.flip_display, NULL);
+#else
+ NULL;
+#endif
qs.callback = NULL;
if (gui_syncquickscreen_run(&qs, button_enter))
{