diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2008-10-05 13:01:54 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2008-10-05 13:01:54 +0000 |
| commit | 1da2f0112e2ef3142c9da8d8bcaf72f6b07ac932 (patch) | |
| tree | 5c991a509f956db1e2d94f7cb221e81c1c83ffe4 /apps/onplay.c | |
| parent | ab424ac11cf121be779abdedf1c552bb5b04c791 (diff) | |
| download | rockbox-1da2f0112e2ef3142c9da8d8bcaf72f6b07ac932.zip rockbox-1da2f0112e2ef3142c9da8d8bcaf72f6b07ac932.tar.gz rockbox-1da2f0112e2ef3142c9da8d8bcaf72f6b07ac932.tar.bz2 rockbox-1da2f0112e2ef3142c9da8d8bcaf72f6b07ac932.tar.xz | |
Accept FS#9231 - viewportify the pitch screen by Thomas Martitz.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18714 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/onplay.c')
| -rw-r--r-- | apps/onplay.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/onplay.c b/apps/onplay.c index 3e6813b..fae86cf 100644 --- a/apps/onplay.c +++ b/apps/onplay.c @@ -64,6 +64,7 @@ #endif #include "cuesheet.h" #include "backdrop.h" +#include "pitchscreen.h" static int context; static char* selected_file = NULL; @@ -1002,7 +1003,7 @@ MENUITEM_FUNCTION(browse_id3_item, 0, ID2P(LANG_MENU_SHOW_ID3_INFO), browse_id3, NULL, NULL, Icon_NOICON); #ifdef HAVE_PITCHSCREEN MENUITEM_FUNCTION(pitch_screen_item, 0, ID2P(LANG_PITCH), - pitch_screen, NULL, NULL, Icon_Audio); + gui_syncpitchscreen_run, NULL, NULL, Icon_Audio); #endif /* CONTEXT_[TREE|ID3DB] items */ |