mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 18:47:39 -04:00
quick fix for FS#9046 - dont let jpeg.rock enter the playback menu if its using the audiobuffer
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17727 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e0f7b7a830
commit
014dc784f3
1 changed files with 8 additions and 1 deletions
|
@ -2601,7 +2601,14 @@ int show_menu(void) /* return 1 to quit */
|
||||||
|
|
||||||
#if PLUGIN_BUFFER_SIZE >= MIN_MEM
|
#if PLUGIN_BUFFER_SIZE >= MIN_MEM
|
||||||
case MIID_SHOW_PLAYBACK_MENU:
|
case MIID_SHOW_PLAYBACK_MENU:
|
||||||
playback_control(rb, NULL);
|
if (plug_buf)
|
||||||
|
{
|
||||||
|
playback_control(rb, NULL);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
rb->splash(HZ, "Cannot restart playback");
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_LCD_COLOR
|
#ifdef HAVE_LCD_COLOR
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue