summaryrefslogtreecommitdiff
path: root/apps/plugins/bench_mem_jpeg.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/bench_mem_jpeg.c')
-rw-r--r--apps/plugins/bench_mem_jpeg.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/plugins/bench_mem_jpeg.c b/apps/plugins/bench_mem_jpeg.c
index 958e5208e8..cd7dea356e 100644
--- a/apps/plugins/bench_mem_jpeg.c
+++ b/apps/plugins/bench_mem_jpeg.c
@@ -42,13 +42,14 @@ static void output_row_null(uint32_t row, void * row_in,
42} 42}
43 43
44const struct custom_format format_null = { 44const struct custom_format format_null = {
45 .output_row_8 = output_row_null,
45#ifdef HAVE_LCD_COLOR 46#ifdef HAVE_LCD_COLOR
46 .output_row = { 47 .output_row_32 = {
47 output_row_null, 48 output_row_null,
48 output_row_null 49 output_row_null
49 }, 50 },
50#else 51#else
51 .output_row = output_row_null, 52 .output_row_32 = output_row_null,
52#endif 53#endif
53 .get_size = get_size_null 54 .get_size = get_size_null
54}; 55};