diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2013-07-12 12:06:38 -0400 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2013-07-13 00:08:51 -0400 |
| commit | 023f6b6efd5407dc77c1253789f61baabb6607d6 (patch) | |
| tree | 40d43117a7651715a2ce983eedff56b27962881a /apps/menus | |
| parent | ffa8626b0c93f8a65e0e17190917f7f173160842 (diff) | |
| download | rockbox-023f6b6efd5407dc77c1253789f61baabb6607d6.zip rockbox-023f6b6efd5407dc77c1253789f61baabb6607d6.tar.gz rockbox-023f6b6efd5407dc77c1253789f61baabb6607d6.tar.bz2 rockbox-023f6b6efd5407dc77c1253789f61baabb6607d6.tar.xz | |
Get rid of some superfluous single-purpose functions in playback.
* Remove explicit tracking of elapsed time of previous track.
* Remove function to obtain auto skip flag.
* Most playback events now carry the extra information instead and
pass 'struct track_event *' for data.
* Tweak scrobbler to use PLAYBACK_EVENT_TRACK_FINISH, which makes
it cleaner and removes the struct mp3entry.
Change-Id: I500d2abb4056a32646496efc3617406e36811ec5
Diffstat (limited to 'apps/menus')
| -rw-r--r-- | apps/menus/playback_menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/menus/playback_menu.c b/apps/menus/playback_menu.c index dbfb44f..a82c88e 100644 --- a/apps/menus/playback_menu.c +++ b/apps/menus/playback_menu.c @@ -157,7 +157,7 @@ static int audioscrobbler_callback(int action,const struct menu_item_ex *this_it scrobbler_init(); if(scrobbler_is_enabled() && !global_settings.audioscrobbler) - scrobbler_shutdown(); + scrobbler_shutdown(false); break; } return action; |