1
0
Fork 0
forked from len0rd/rockbox

Preparation for runtimedb hookup on archos: don't pass software playback system specific structures.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7345 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2005-08-18 06:05:15 +00:00
parent 363bc490ff
commit a88d076ac4
3 changed files with 6 additions and 6 deletions

View file

@ -314,8 +314,8 @@ void rundb_unbuffer_track(struct mp3entry *id, bool last_track) {
}
}
void rundb_track_change(struct track_info *ti) {
ti->id3.playcount++;
void rundb_track_change(struct mp3entry *id) {
id->playcount++;
}
void rundb_buffer_track(struct mp3entry *id, bool last_track) {