From e6fd7d2d1f361bdc28ea1e47a41bc715fa54996a Mon Sep 17 00:00:00 2001 From: Frank Gevaerts Date: Tue, 28 Aug 2012 21:36:23 +0200 Subject: [PATCH] Make the recorder build with HAVE_LCD_FLIP disabled. Change-Id: I5875dc5c59606867299cc0e30d869b817e879ade --- apps/gui/quickscreen.c | 4 ++++ 1 file changed, 4 insertions(+) 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)) { -- 2.11.4.GIT