1
0
Fork 0
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:
Jonathan Gordon 2008-03-09 03:01:29 +00:00
parent 44047248ce
commit e009c0bbe1

View file

@ -2369,7 +2369,9 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
switch(butt) switch(butt)
{ {
case MP3ENC_DONE: cont = 0; break; case MP3ENC_DONE: cont = 0; break;
case MP3ENC_PREV|BUTTON_REPEAT:
case MP3ENC_PREV: if(srat > 0 ) srat--; break; case MP3ENC_PREV: if(srat > 0 ) srat--; break;
case MP3ENC_NEXT|BUTTON_REPEAT:
case MP3ENC_NEXT: if(srat < nrat) srat++; break; case MP3ENC_NEXT: if(srat < nrat) srat++; break;
} }