diff options
author | Steve Bavin <pondlife@pondlife.me> | 2007-03-07 19:56:15 +0000 |
---|---|---|
committer | Steve Bavin <pondlife@pondlife.me> | 2007-03-07 19:56:15 +0000 |
commit | 8137489e2b967e40c15005c8a4c09903a8a24fc4 (patch) | |
tree | 752564abdbe09360dcc97da686d3e45f244578a2 /apps/tagcache.c | |
parent | 99b2742cd0de7181677f3aa7222caa5dc358ee12 (diff) |
Lead user through database initialisation
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12678 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tagcache.c')
-rw-r--r-- | apps/tagcache.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/tagcache.c b/apps/tagcache.c index bcff803d18..a899ff91fd 100644 --- a/apps/tagcache.c +++ b/apps/tagcache.c @@ -3904,16 +3904,12 @@ bool tagcache_update(void) return false; queue_post(&tagcache_queue, Q_UPDATE, 0); - gui_syncsplash(HZ*2, true, str(LANG_TAGCACHE_FORCE_UPDATE_SPLASH)); - return false; } -bool tagcache_rebuild(void) +bool tagcache_rebuild() { queue_post(&tagcache_queue, Q_REBUILD, 0); - gui_syncsplash(HZ*2, true, str(LANG_TAGCACHE_FORCE_UPDATE_SPLASH)); - return false; } @@ -3974,4 +3970,8 @@ int tagcache_get_commit_step(void) { return tc_stat.commit_step; } +int tagcache_get_max_commit_step(void) +{ + return 8; /* To be written, better hard-coded here than in the UI */ +} |