summaryrefslogtreecommitdiffstats
path: root/apps/plugins
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 /apps/plugins
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
Diffstat (limited to 'apps/plugins')
-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)
*/
enum {
#if PF_PLAYBACK_CAPABLE
- PF_MENU_PLAYBACK_CONTROl,
+ PF_MENU_PLAYBACK_CONTROL,
#endif
PF_MENU_SETTINGS,
PF_MENU_RETURN,
@@ -2161,7 +2161,7 @@ int main_menu(void)
while (1) {
switch (rb->do_menu(&main_menu,&selection, NULL, false)) {
#if PF_PLAYBACK_CAPABLE
- case PF_MENU_PLAYBACK_CONTROl: /* Playback Control */
+ case PF_MENU_PLAYBACK_CONTROL: /* Playback Control */
playback_control(NULL);
break;
#endif