summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/mpegplayer/mpeg_settings.c2
-rw-r--r--apps/plugins/mpegplayer/mpeg_settings.h3
2 files changed, 3 insertions, 2 deletions
diff --git a/apps/plugins/mpegplayer/mpeg_settings.c b/apps/plugins/mpegplayer/mpeg_settings.c
index 3edb2987a1..189bdbcde7 100644
--- a/apps/plugins/mpegplayer/mpeg_settings.c
+++ b/apps/plugins/mpegplayer/mpeg_settings.c
@@ -205,7 +205,7 @@ static struct configdata config[] =
205 NULL}, 205 NULL},
206 {TYPE_INT, 0, MPEG_RESUME_NUM_OPTIONS, 206 {TYPE_INT, 0, MPEG_RESUME_NUM_OPTIONS,
207 { .int_p = &settings.resume_options }, "Resume options", NULL}, 207 { .int_p = &settings.resume_options }, "Resume options", NULL},
208#if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) || defined(SANSA_C200) 208#if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) || defined(SANSA_C200) || defined(SANSA_FUZE) || defined(SANSA_E200V2)
209 {TYPE_INT, 0, INT_MAX, { .int_p = &settings.displayoptions }, 209 {TYPE_INT, 0, INT_MAX, { .int_p = &settings.displayoptions },
210 "Display options", NULL}, 210 "Display options", NULL},
211#endif 211#endif
diff --git a/apps/plugins/mpegplayer/mpeg_settings.h b/apps/plugins/mpegplayer/mpeg_settings.h
index 6de9e698b0..fc43db036b 100644
--- a/apps/plugins/mpegplayer/mpeg_settings.h
+++ b/apps/plugins/mpegplayer/mpeg_settings.h
@@ -6,7 +6,8 @@
6#define SETTINGS_FILENAME "mpegplayer.cfg" 6#define SETTINGS_FILENAME "mpegplayer.cfg"
7 7
8#if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) || defined(SANSA_C200) \ 8#if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) || defined(SANSA_C200) \
9 || defined(IRIVER_H10) || defined(COWON_D2) || defined(PHILIPS_HDD1630) 9 || defined(IRIVER_H10) || defined(COWON_D2) || defined(PHILIPS_HDD1630) \
10 || defined(SANSA_FUZE) || defined(SANSA_E200V2)
10#define MPEG_OPTION_DITHERING_ENABLED 1 11#define MPEG_OPTION_DITHERING_ENABLED 1
11#endif 12#endif
12 13