summaryrefslogtreecommitdiff
path: root/apps/plugins/clock.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/clock.c
parentfe706d2754220794d6a22370424391e146b75c95 (diff)
downloadrockbox-1afa395c2fe08ed937dbb0624ade48e46be87efe.zip
rockbox-1afa395c2fe08ed937dbb0624ade48e46be87efe.tar.gz
rockbox-1afa395c2fe08ed937dbb0624ade48e46be87efe.tar.bz2
rockbox-1afa395c2fe08ed937dbb0624ade48e46be87efe.tar.xz
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/clock.c')
-rw-r--r--apps/plugins/clock.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/plugins/clock.c b/apps/plugins/clock.c
index fa910ef..1df0f70 100644
--- a/apps/plugins/clock.c
+++ b/apps/plugins/clock.c
@@ -65,7 +65,7 @@ void save_settings(void)
}
else
{
- rb->splash(HZ, 0, true, "Setting save failed");
+ rb->splash(HZ, true, "Setting save failed");
}
}
@@ -83,7 +83,7 @@ void load_settings(void)
/* Else, loading failed */
else
{
- rb->splash(HZ, 0, true, "Setting load failed, using default settings.");
+ rb->splash(HZ, true, "Setting load failed, using default settings.");
}
}
@@ -121,7 +121,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
load_settings();
rb->lcd_clear_display();
- rb->splash(HZ, 0, true, "F1 for INFO");
+ rb->splash(HZ, true, "F1 for INFO");
while (!PLUGIN_OK)
{
@@ -324,11 +324,11 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
/* Tell the user what's going on */
rb->lcd_clear_display();
- rb->splash(HZ/2, 0, true, "Saving settings...");
+ rb->splash(HZ/2, true, "Saving settings...");
/* Save to disk */
save_settings();
rb->lcd_clear_display();
- rb->splash(HZ, 0, true, "Saved!");
+ rb->splash(HZ, true, "Saved!");
/* ...and exit. */
return PLUGIN_OK;
break;