From 1afa395c2fe08ed937dbb0624ade48e46be87efe Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 8 Jan 2004 09:58:58 +0000 Subject: 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 --- apps/plugins/clock.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'apps/plugins/clock.c') 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; -- cgit v1.1