summaryrefslogtreecommitdiff
path: root/apps/main.c
diff options
context:
space:
mode:
authorMiika Pekkarinen <miipekk@ihme.org>2006-10-04 09:05:01 +0000
committerMiika Pekkarinen <miipekk@ihme.org>2006-10-04 09:05:01 +0000
commit812cbad890c5f891a27d6e827969424aa184bf2f (patch)
tree2aee4dc8f5a63243459d624341b87d1db7a3d6f7 /apps/main.c
parent5db6bb1cafa0c74b0d5f81917943b9421bfa32a8 (diff)
downloadrockbox-812cbad890c5f891a27d6e827969424aa184bf2f.tar.gz
rockbox-812cbad890c5f891a27d6e827969424aa184bf2f.zip
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
Diffstat (limited to 'apps/main.c')
-rw-r--r--apps/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/main.c b/apps/main.c
index 2ceb24d96f..a2bbe73e65 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -185,10 +185,10 @@ void init_tagcache(void)
185 { 185 {
186#ifdef HAVE_LCD_BITMAP 186#ifdef HAVE_LCD_BITMAP
187 gui_syncsplash(0, true, "%s [%d/%d]", 187 gui_syncsplash(0, true, "%s [%d/%d]",
188 str(LANG_TAGCACHE_INIT), ret, TAG_COUNT); 188 str(LANG_TAGCACHE_INIT), ret, 7);
189#else 189#else
190 lcd_double_height(false); 190 lcd_double_height(false);
191 snprintf(buf, sizeof(buf), " TC [%d/%d]", ret, TAG_COUNT); 191 snprintf(buf, sizeof(buf), " TC [%d/%d]", ret, 7);
192 lcd_puts(0, 1, buf); 192 lcd_puts(0, 1, buf);
193#endif 193#endif
194 clear = true; 194 clear = true;