summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/jpeg.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugins/jpeg.c b/apps/plugins/jpeg.c
index 12574237b3..396617f40b 100644
--- a/apps/plugins/jpeg.c
+++ b/apps/plugins/jpeg.c
@@ -2109,7 +2109,9 @@ int show_menu(void) /* return 1 to quit */
2109 { "Quit", NULL }, 2109 { "Quit", NULL },
2110 { "Toggle Slideshow Mode", NULL }, 2110 { "Toggle Slideshow Mode", NULL },
2111 { "Change Slideshow Time", NULL }, 2111 { "Change Slideshow Time", NULL },
2112#if PLUGIN_BUFFER_SIZE >= MIN_MEM
2112 { "Show Playback Menu", NULL }, 2113 { "Show Playback Menu", NULL },
2114#endif
2113 { "Return", NULL }, 2115 { "Return", NULL },
2114 }; 2116 };
2115 static const struct opt_items slideshow[2] = { 2117 static const struct opt_items slideshow[2] = {
@@ -2162,9 +2164,11 @@ int show_menu(void) /* return 1 to quit */
2162 } 2164 }
2163 break; 2165 break;
2164 case 3: 2166 case 3:
2167#if PLUGIN_BUFFER_SIZE >= MIN_MEM
2165 playback_control(rb); 2168 playback_control(rb);
2166 break; 2169 break;
2167 case 4: 2170 case 4:
2171#endif
2168 break; 2172 break;
2169 } 2173 }
2170 2174