summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Levin <al.le@rockbox.org>2009-06-08 17:26:25 +0000
committerAlexander Levin <al.le@rockbox.org>2009-06-08 17:26:25 +0000
commit5ba9fe0fc3bc066578191f88209275d42f2220bb (patch)
treeb9bf7ebdec1b20d8717406b6fe914494dbcbe914
parent995f64c22739d5fb7806315edfa5c61bd451da8e (diff)
downloadrockbox-5ba9fe0fc3bc066578191f88209275d42f2220bb.tar.gz
rockbox-5ba9fe0fc3bc066578191f88209275d42f2220bb.zip
Fix case in the constant
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21217 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/pictureflow/pictureflow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/pictureflow/pictureflow.c b/apps/plugins/pictureflow/pictureflow.c
index ada47bca5e..11822baacd 100644
--- a/apps/plugins/pictureflow/pictureflow.c
+++ b/apps/plugins/pictureflow/pictureflow.c
@@ -2137,7 +2137,7 @@ int settings_menu(void)
2137 */ 2137 */
2138enum { 2138enum {
2139#if PF_PLAYBACK_CAPABLE 2139#if PF_PLAYBACK_CAPABLE
2140 PF_MENU_PLAYBACK_CONTROl, 2140 PF_MENU_PLAYBACK_CONTROL,
2141#endif 2141#endif
2142 PF_MENU_SETTINGS, 2142 PF_MENU_SETTINGS,
2143 PF_MENU_RETURN, 2143 PF_MENU_RETURN,
@@ -2161,7 +2161,7 @@ int main_menu(void)
2161 while (1) { 2161 while (1) {
2162 switch (rb->do_menu(&main_menu,&selection, NULL, false)) { 2162 switch (rb->do_menu(&main_menu,&selection, NULL, false)) {
2163#if PF_PLAYBACK_CAPABLE 2163#if PF_PLAYBACK_CAPABLE
2164 case PF_MENU_PLAYBACK_CONTROl: /* Playback Control */ 2164 case PF_MENU_PLAYBACK_CONTROL: /* Playback Control */
2165 playback_control(NULL); 2165 playback_control(NULL);
2166 break; 2166 break;
2167#endif 2167#endif