From 12ef1a37dcedc0594e70125aba8fa7eae0b7e72d Mon Sep 17 00:00:00 2001 From: alle Date: Mon, 8 Jun 2009 17:26:25 +0000 Subject: [PATCH] Fix case in the constant git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21217 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/pictureflow/pictureflow.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/plugins/pictureflow/pictureflow.c b/apps/plugins/pictureflow/pictureflow.c index ada47bca5..11822baac 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 -- 2.11.4.GIT