diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2010-08-25 19:00:58 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-08-25 19:00:58 +0000 |
| commit | 7014faee69119b832451a136c25e63722100b85e (patch) | |
| tree | a31c20e5dcb920761924aa57a7507d8c33959ea4 /apps/plugins/ppmviewer.c | |
| parent | b11767b7ae883f48e9020a7b137ddba5360d31af (diff) | |
| download | rockbox-7014faee69119b832451a136c25e63722100b85e.zip rockbox-7014faee69119b832451a136c25e63722100b85e.tar.gz rockbox-7014faee69119b832451a136c25e63722100b85e.tar.bz2 rockbox-7014faee69119b832451a136c25e63722100b85e.tar.xz | |
Remove build conditions inside .c plugin files
Rather use the Makefile to specify which files must be built
Fix color builds with test plugins enabled (test_scanrate gave an empty
.o file)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27886 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/ppmviewer.c')
| -rw-r--r-- | apps/plugins/ppmviewer.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/apps/plugins/ppmviewer.c b/apps/plugins/ppmviewer.c index 035fffe..e138692 100644 --- a/apps/plugins/ppmviewer.c +++ b/apps/plugins/ppmviewer.c @@ -22,10 +22,6 @@ #include "plugin.h" #include "lib/pluginlib_bmp.h" -#if defined(HAVE_LCD_COLOR) - - - /* Magic constants. */ #define PPM_MAGIC1 'P' #define PPM_MAGIC2 '3' @@ -357,5 +353,3 @@ enum plugin_status plugin_start(const void* parameter) return PLUGIN_OK; } - -#endif |