diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2004-01-08 09:58:58 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2004-01-08 09:58:58 +0000 |
| commit | 1afa395c2fe08ed937dbb0624ade48e46be87efe (patch) | |
| tree | 621bd3dcf4c1250790f6cf414645d36611684b79 /apps/plugins/rockbox_flash.c | |
| parent | fe706d2754220794d6a22370424391e146b75c95 (diff) | |
| download | rockbox-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/rockbox_flash.c')
| -rw-r--r-- | apps/plugins/rockbox_flash.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/plugins/rockbox_flash.c b/apps/plugins/rockbox_flash.c index 9dc4b3a..661203b 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 */ } |