diff options
| author | Brandon Low <lostlogic@rockbox.org> | 2006-04-15 02:03:11 +0000 |
|---|---|---|
| committer | Brandon Low <lostlogic@rockbox.org> | 2006-04-15 02:03:11 +0000 |
| commit | ebadcc633ae8ad2a6048aff9c815cdb37f012e44 (patch) | |
| tree | 2749a0dccbec61669b99d83867b7cf18c661f3e0 /apps/codecs/mpa.c | |
| parent | ae33f37678311c5d6893aa526fad947bce912eff (diff) | |
| download | rockbox-ebadcc633ae8ad2a6048aff9c815cdb37f012e44.zip rockbox-ebadcc633ae8ad2a6048aff9c815cdb37f012e44.tar.gz rockbox-ebadcc633ae8ad2a6048aff9c815cdb37f012e44.tar.bz2 rockbox-ebadcc633ae8ad2a6048aff9c815cdb37f012e44.tar.xz | |
Put new_track on the codec_api, and use it instead of the reload_codec variable in most places. Should help with problems people have had with GUI vs. playback sync.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9670 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/mpa.c')
| -rw-r--r-- | apps/codecs/mpa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/mpa.c b/apps/codecs/mpa.c index 787d669..7219095 100644 --- a/apps/codecs/mpa.c +++ b/apps/codecs/mpa.c @@ -155,7 +155,7 @@ enum codec_status codec_start(struct codec_api *api) int framelength; ci->yield(); - if (ci->stop_codec || ci->reload_codec) + if (ci->stop_codec || ci->new_track) break; if (ci->seek_time) { |