summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/bitmaps/native/SOURCES9
1 files changed, 7 insertions, 2 deletions
diff --git a/apps/plugins/bitmaps/native/SOURCES b/apps/plugins/bitmaps/native/SOURCES
index 2eab01f570..5ceabbcbb6 100644
--- a/apps/plugins/bitmaps/native/SOURCES
+++ b/apps/plugins/bitmaps/native/SOURCES
@@ -827,6 +827,10 @@ rockboxlogo.91x32x1.bmp
827#endif 827#endif
828 828
829/* Pitch detector */ 829/* Pitch detector */
830/* The following preprocessor condition must match the condition */
831/* for pitch detector from plugins/SOURCES */
832#if (CONFIG_CODEC == SWCODEC) && defined(HAVE_RECORDING) && \
833 (defined(HAVE_LINE_IN) || defined(HAVE_MIC_IN))
830#if (LCD_WIDTH >= 320) && (LCD_HEIGHT >= 240) && (LCD_DEPTH >= 16) 834#if (LCD_WIDTH >= 320) && (LCD_HEIGHT >= 240) && (LCD_DEPTH >= 16)
831pitch_notes.320x240x16.bmp 835pitch_notes.320x240x16.bmp
832#elif (LCD_WIDTH >= 220) && (LCD_HEIGHT >= 176) && (LCD_DEPTH >= 16) 836#elif (LCD_WIDTH >= 220) && (LCD_HEIGHT >= 176) && (LCD_DEPTH >= 16)
@@ -845,9 +849,10 @@ pitch_notes.160x128x2.bmp
845pitch_notes.132x80x16.bmp 849pitch_notes.132x80x16.bmp
846#elif (LCD_WIDTH >= 128) && (LCD_HEIGHT >= 96) && (LCD_DEPTH >= 2) 850#elif (LCD_WIDTH >= 128) && (LCD_HEIGHT >= 96) && (LCD_DEPTH >= 2)
847pitch_notes.128x96x2.bmp 851pitch_notes.128x96x2.bmp
848#elif (LCD_WIDTH >= 112) && (LCD_HEIGHT >= 64) && (LCD_DEPTH >= 1) 852#else
849/* There isn't a target currently with this screen and recording ability */ 853#error Pitch Detector: unsupported LCD
850#endif 854#endif
855#endif /* Complex condition for pitch detector */
851 856
852 857
853#endif /* HAVE_LCD_BITMAP */ 858#endif /* HAVE_LCD_BITMAP */