Fix FS#8196 - Gather Runtime Data > User Rating not working
(don't pass a pointer to short when pointer to int is required) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15762 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
7af22e1a86
commit
bd1813d464
1 changed files with 2 additions and 2 deletions
|
@ -200,8 +200,8 @@ struct mp3entry {
|
|||
|
||||
/* runtime database fields */
|
||||
long tagcache_idx;
|
||||
short rating;
|
||||
short score;
|
||||
int rating;
|
||||
int score;
|
||||
long playcount;
|
||||
long lastplayed;
|
||||
long playtime;
|
||||
|
|
Loading…
Reference in a new issue