summaryrefslogtreecommitdiff
path: root/apps/plugins/helloworld.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-01-08 09:58:58 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-01-08 09:58:58 +0000
commit1afa395c2fe08ed937dbb0624ade48e46be87efe (patch)
tree621bd3dcf4c1250790f6cf414645d36611684b79 /apps/plugins/helloworld.c
parentfe706d2754220794d6a22370424391e146b75c95 (diff)
downloadrockbox-1afa395c2fe08ed937dbb0624ade48e46be87efe.tar.gz
rockbox-1afa395c2fe08ed937dbb0624ade48e46be87efe.zip
The splash() function's second argument (keymask) is now removed, as it
was not used by any code. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4201 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/helloworld.c')
-rw-r--r--apps/plugins/helloworld.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/helloworld.c b/apps/plugins/helloworld.c
index ea347fbf79..d0fecba169 100644
--- a/apps/plugins/helloworld.c
+++ b/apps/plugins/helloworld.c
@@ -42,7 +42,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
42 rb = api; 42 rb = api;
43 43
44 /* now go ahead and have fun! */ 44 /* now go ahead and have fun! */
45 rb->splash(HZ*2, 0, true, "Hello world!"); 45 rb->splash(HZ*2, true, "Hello world!");
46 46
47 return PLUGIN_OK; 47 return PLUGIN_OK;
48} 48}