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/rockbox_flash.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'apps/plugins/rockbox_flash.c') diff --git a/apps/plugins/rockbox_flash.c b/apps/plugins/rockbox_flash.c index 9dc4b3a663..661203b8b8 100644 --- a/apps/plugins/rockbox_flash.c +++ b/apps/plugins/rockbox_flash.c @@ -525,7 +525,7 @@ void DoUserDialog(char* filename, bool show_greet) sector = rb->plugin_get_buffer(&memleft); if (memleft < SECTORSIZE) /* need buffer for a flash sector */ { - rb->splash(HZ*3, 0, true, "Out of memory"); + rb->splash(HZ*3, true, "Out of memory"); return; /* exit */ } @@ -537,12 +537,12 @@ void DoUserDialog(char* filename, bool show_greet) if (FlashInfo.size == 0) /* no valid chip */ { - rb->splash(HZ*3, 0, true, "Not flashable"); + rb->splash(HZ*3, true, "Not flashable"); return; /* exit */ } else if (pos == 0) { - rb->splash(HZ*3, 0, true, "No image"); + rb->splash(HZ*3, true, "No image"); return; /* exit */ } @@ -701,7 +701,7 @@ void DoUserDialog(char* filename, bool show_greet) sector = rb->plugin_get_buffer(&memleft); if (memleft < SECTORSIZE) /* need buffer for a flash sector */ { - rb->splash(HZ*3, 0, true, "Out of memory"); + rb->splash(HZ*3, true, "Out of memory"); return; /* exit */ } @@ -716,12 +716,12 @@ void DoUserDialog(char* filename, bool show_greet) if (FlashInfo.size == 0) /* no valid chip */ { - rb->splash(HZ*3, 0, true, "Not flashable"); + rb->splash(HZ*3, true, "Not flashable"); return; /* exit */ } else if (pos == 0) { - rb->splash(HZ*3, 0, true, "No image"); + rb->splash(HZ*3, true, "No image"); return; /* exit */ } -- cgit v1.2.3