summaryrefslogtreecommitdiff
path: root/apps/plugins/jpeg.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2006-11-05 15:06:11 +0000
committerJens Arnold <amiconn@rockbox.org>2006-11-05 15:06:11 +0000
commit9a56fdf5b2255659812855c4c33288c0732e2cee (patch)
tree980c6a142d322fe7849bbb6137ad6d12e474deaa /apps/plugins/jpeg.c
parent32c69452d699ce4dbf35e843b2f69507321e1b71 (diff)
downloadrockbox-9a56fdf5b2255659812855c4c33288c0732e2cee.tar.gz
rockbox-9a56fdf5b2255659812855c4c33288c0732e2cee.zip
JPEG viewer: Removed the playback control menu on archos. It made no sense as the JPEG viewer always needs to use the main buffer on archos, and it could cause strange effects.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11437 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/jpeg.c')
-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