forked from len0rd/rockbox
fix FS#7619 - hopefully... - have to stop/start scrolling to change bitrate
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16586 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
44047248ce
commit
e009c0bbe1
1 changed files with 2 additions and 0 deletions
|
|
@ -2369,7 +2369,9 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
|||
switch(butt)
|
||||
{
|
||||
case MP3ENC_DONE: cont = 0; break;
|
||||
case MP3ENC_PREV|BUTTON_REPEAT:
|
||||
case MP3ENC_PREV: if(srat > 0 ) srat--; break;
|
||||
case MP3ENC_NEXT|BUTTON_REPEAT:
|
||||
case MP3ENC_NEXT: if(srat < nrat) srat++; break;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue