1
0
Fork 0
forked from len0rd/rockbox

woops, remove that sim code which I forgot to remove from the older versions of the patch... ordinarily I would have just said fix red, but that would have been boring, and because rasher asked so nicley that we stop it, I thought I'd do him the curtosy... this is also part of my on going goal to increase global warming using the Rockbox botnet^H^H^H^H^H^Hbuild system... also, maybe its bed time?

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21979 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2009-07-20 05:28:36 +00:00
parent 24b136f62d
commit 8e7f9fe595

View file

@ -2833,19 +2833,6 @@ static void mpeg_thread(void)
{
id3->elapsed+=1000;
id3->offset+=1000;
if (id3->cuesheet)
{
struct cuesheet *cue = id3->cuesheet;
unsigned elapsed = id3->elapsed;
if (elapsed < cue->curr_track->offset ||
(cue->curr_track_idx < cue->track_count-1 &&
elapsed >= (cue->curr_track+1)->offset))
{
cue_find_current_track(id3->cuesheet, id3->elapsed);
cue_spoof_id3(id3->cuesheet, id3);
send_event(PLAYBACK_EVENT_CUESHEET_TRACK_CHANGE, id3);
}
}
}
if (id3->elapsed>=id3->length)
audio_next();