1
0
Fork 0
forked from len0rd/rockbox

Enables the menu button for recorder and player while in WPS. Patch by Lee Marlow

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1394 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jerome Kuptz 2002-07-21 19:47:24 +00:00
parent 54a65f76ce
commit d579c70e54

View file

@ -32,6 +32,7 @@
#include "mpeg.h" #include "mpeg.h"
#include "usb.h" #include "usb.h"
#include "power.h" #include "power.h"
#include "main_menu.h"
#define LINE_Y 1 /* initial line */ #define LINE_Y 1 /* initial line */
@ -224,7 +225,15 @@ int wps_show(void)
case BUTTON_RIGHT: case BUTTON_RIGHT:
mpeg_next(); mpeg_next();
break; break;
#ifdef HAVE_RECORDER_KEYPAD
case BUTTON_F1:
#else
case BUTTON_MENU:
#endif
lcd_stop_scroll();
main_menu();
draw_screen(id3);
break;
#ifdef HAVE_RECORDER_KEYPAD #ifdef HAVE_RECORDER_KEYPAD
case BUTTON_OFF: case BUTTON_OFF:
#else #else