diff --git a/apps/plugins/pegbox.c b/apps/plugins/pegbox.c index 8176bd3..69441a4 100644 --- a/apps/plugins/pegbox.c +++ b/apps/plugins/pegbox.c @@ -20,6 +20,8 @@ ****************************************************************************/ #include "plugin.h" +#include "lib/playback_control.h" + #include "pluginbitmaps/pegbox_header.h" #include "pluginbitmaps/pegbox_pieces.h" @@ -1089,6 +1091,7 @@ enum menu_items { PB_MENU_START, PB_MENU_RESUME, PB_MENU_HELP, + PB_MENU_PLAYBACK, PB_MENU_QUIT }; @@ -1096,6 +1099,7 @@ MENUITEM_STRINGLIST (main_menu, "Pegbox", NULL, "Start", "Resume", "Help", + "Playback Control", "Quit"); @@ -1164,6 +1168,10 @@ static unsigned int pegbox_menu(struct game_context* pb) { , true); break; + case PB_MENU_PLAYBACK: + playback_control(NULL); + break; + case MENU_ATTACHED_USB: rb->splash(0, "Saving data..."); pegbox_savedata(pb);