1
0
Fork 0
forked from len0rd/rockbox

Fixed find_index returning incorrect entry unless entries are found.

Commit all numeric tags at once and set a flag if tracknumber has been
guessed. Cleaned up temporary file creation.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11122 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Miika Pekkarinen 2006-10-04 09:05:01 +00:00
parent 5db6bb1caf
commit 812cbad890
3 changed files with 119 additions and 97 deletions

View file

@ -185,10 +185,10 @@ void init_tagcache(void)
{
#ifdef HAVE_LCD_BITMAP
gui_syncsplash(0, true, "%s [%d/%d]",
str(LANG_TAGCACHE_INIT), ret, TAG_COUNT);
str(LANG_TAGCACHE_INIT), ret, 7);
#else
lcd_double_height(false);
snprintf(buf, sizeof(buf), " TC [%d/%d]", ret, TAG_COUNT);
snprintf(buf, sizeof(buf), " TC [%d/%d]", ret, 7);
lcd_puts(0, 1, buf);
#endif
clear = true;