summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichiel Van Der Kolk <not.valid@email.address>2005-04-28 12:40:41 +0000
committerMichiel Van Der Kolk <not.valid@email.address>2005-04-28 12:40:41 +0000
commitc013936d182add4930056eb3d7028524aed499c2 (patch)
tree5ac631397f89a994377557653e786ec9a317499f
parent9369d4867d3bf033e0e3bbcff05cd7f0a9bb83e8 (diff)
downloadrockbox-c013936d182add4930056eb3d7028524aed499c2.tar.gz
rockbox-c013936d182add4930056eb3d7028524aed499c2.zip
No unneeded delays...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6368 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/searchengine/searchengine.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/plugins/searchengine/searchengine.c b/apps/plugins/searchengine/searchengine.c
index 4b14836ddc..5065da7e78 100644
--- a/apps/plugins/searchengine/searchengine.c
+++ b/apps/plugins/searchengine/searchengine.c
@@ -5,7 +5,7 @@
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < 5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ 6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * $Id 8 * $Id$
9 * 9 *
10 * Copyright (C) 2005 by Michiel van der Kolk 10 * Copyright (C) 2005 by Michiel van der Kolk
11 * 11 *
@@ -71,7 +71,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
71 audio_buffer_free=0; 71 audio_buffer_free=0;
72 72
73 /* now go ahead and have fun! */ 73 /* now go ahead and have fun! */
74 rb->splash(HZ*2, true, "SearchEngine v0.1"); 74 PUTS("SearchEngine v0.1");
75 tokenstream[0].kind=TOKEN_NUMIDENTIFIER; 75 tokenstream[0].kind=TOKEN_NUMIDENTIFIER;
76 tokenstream[0].intvalue=INTVALUE_YEAR; 76 tokenstream[0].intvalue=INTVALUE_YEAR;
77 tokenstream[1].kind=TOKEN_GTE; 77 tokenstream[1].kind=TOKEN_GTE;
@@ -96,6 +96,5 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
96/* rb->write(fd,result,rb->tagdbheader->filecount);*/ 96/* rb->write(fd,result,rb->tagdbheader->filecount);*/
97 rb->close(fd); 97 rb->close(fd);
98 } 98 }
99 rb->sleep(HZ*10);
100 return PLUGIN_OK; 99 return PLUGIN_OK;
101} 100}