diff options
| author | Michiel Van Der Kolk <not.valid@email.address> | 2005-04-28 12:40:41 +0000 |
|---|---|---|
| committer | Michiel Van Der Kolk <not.valid@email.address> | 2005-04-28 12:40:41 +0000 |
| commit | c013936d182add4930056eb3d7028524aed499c2 (patch) | |
| tree | 5ac631397f89a994377557653e786ec9a317499f /apps/plugins | |
| parent | 9369d4867d3bf033e0e3bbcff05cd7f0a9bb83e8 (diff) | |
| download | rockbox-c013936d182add4930056eb3d7028524aed499c2.zip rockbox-c013936d182add4930056eb3d7028524aed499c2.tar.gz rockbox-c013936d182add4930056eb3d7028524aed499c2.tar.bz2 rockbox-c013936d182add4930056eb3d7028524aed499c2.tar.xz | |
No unneeded delays...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6368 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/searchengine/searchengine.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/plugins/searchengine/searchengine.c b/apps/plugins/searchengine/searchengine.c index 4b14836..5065da7 100644 --- a/apps/plugins/searchengine/searchengine.c +++ b/apps/plugins/searchengine/searchengine.c @@ -5,7 +5,7 @@ * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ * \/ \/ \/ \/ \/ - * $Id + * $Id$ * * Copyright (C) 2005 by Michiel van der Kolk * @@ -71,7 +71,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) audio_buffer_free=0; /* now go ahead and have fun! */ - rb->splash(HZ*2, true, "SearchEngine v0.1"); + PUTS("SearchEngine v0.1"); tokenstream[0].kind=TOKEN_NUMIDENTIFIER; tokenstream[0].intvalue=INTVALUE_YEAR; tokenstream[1].kind=TOKEN_GTE; @@ -96,6 +96,5 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) /* rb->write(fd,result,rb->tagdbheader->filecount);*/ rb->close(fd); } - rb->sleep(HZ*10); return PLUGIN_OK; } |