summaryrefslogtreecommitdiff
path: root/apps/recorder
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder')
-rw-r--r--apps/recorder/resize.c2
-rw-r--r--apps/recorder/resize.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/resize.c b/apps/recorder/resize.c
index 3a0ad8d75b..bae72c8113 100644
--- a/apps/recorder/resize.c
+++ b/apps/recorder/resize.c
@@ -858,7 +858,7 @@ int resize_on_load(struct bitmap *bm, bool dither, struct dim *src,
858#endif 858#endif
859 if (format) 859 if (format)
860#endif 860#endif
861#if defined(HAVE_LCD_COLOR) && (defined(HAVE_JPEG) || defined(PLUGIN)) 861#ifdef HAVE_LCD_COLOR
862 ctx.output_row = format->output_row_32[format_index]; 862 ctx.output_row = format->output_row_32[format_index];
863#else 863#else
864 ctx.output_row = format->output_row_32; 864 ctx.output_row = format->output_row_32;
diff --git a/apps/recorder/resize.h b/apps/recorder/resize.h
index ef32066a0d..d71a3e7f1c 100644
--- a/apps/recorder/resize.h
+++ b/apps/recorder/resize.h
@@ -143,7 +143,7 @@ struct scaler_context {
143 bool (*h_scaler)(void*,struct scaler_context*, bool); 143 bool (*h_scaler)(void*,struct scaler_context*, bool);
144}; 144};
145 145
146#if defined(HAVE_LCD_COLOR) && (defined(HAVE_JPEG) || defined(PLUGIN)) 146#if defined(HAVE_LCD_COLOR)
147#define IF_PIX_FMT(...) __VA_ARGS__ 147#define IF_PIX_FMT(...) __VA_ARGS__
148#else 148#else
149#define IF_PIX_FMT(...) 149#define IF_PIX_FMT(...)