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/firmware_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/firmware_flash.c')
| -rw-r--r-- | apps/plugins/firmware_flash.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/plugins/firmware_flash.c b/apps/plugins/firmware_flash.c index c609f5d..c146b34 100644 --- a/apps/plugins/firmware_flash.c +++ b/apps/plugins/firmware_flash.c @@ -611,7 +611,7 @@ void DoUserDialog(char* filename) /* test if the user is running the correct plugin for this box */ if (!CheckPlatform(PLATFORM_ID, *(UINT16*)(FB + VERSION_ADR))) { - rb->splash(HZ*3, 0, true, "Wrong plugin"); + rb->splash(HZ*3, true, "Wrong plugin"); return; /* exit */ } @@ -619,7 +619,7 @@ void DoUserDialog(char* filename) result = CheckBootROM(); if (result == eUnknown) { /* no support for any other yet */ - rb->splash(HZ*3, 0, true, "Wrong boot ROM"); + rb->splash(HZ*3, true, "Wrong boot ROM"); return; /* exit */ } is_romless = (result == eROMless); @@ -640,7 +640,7 @@ void DoUserDialog(char* filename) sector = rb->plugin_get_buffer(&memleft); if (memleft < SEC_SIZE) /* 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 */ } @@ -648,7 +648,7 @@ void DoUserDialog(char* filename) ShowFlashInfo(&FlashInfo); if (FlashInfo.size == 0) /* no valid chip */ { - rb->splash(HZ*3, 0, true, "Sorry!"); + rb->splash(HZ*3, true, "Sorry!"); return; /* exit */ } @@ -832,7 +832,7 @@ void DoUserDialog(char* filename) /* test if the user is running the correct plugin for this box */ if (!CheckPlatform(PLATFORM_ID, *(UINT16*)(FB + VERSION_ADR))) { - rb->splash(HZ*3, 0, true, "Wrong version"); + rb->splash(HZ*3, true, "Wrong version"); return; /* exit */ } @@ -840,7 +840,7 @@ void DoUserDialog(char* filename) result = CheckBootROM(); if (result == eUnknown) { /* no support for any other yet */ - rb->splash(HZ*3, 0, true, "Wrong boot ROM"); + rb->splash(HZ*3, true, "Wrong boot ROM"); return; /* exit */ } is_romless = (result == eROMless); @@ -861,7 +861,7 @@ void DoUserDialog(char* filename) sector = rb->plugin_get_buffer(&memleft); if (memleft < SEC_SIZE) /* 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 */ } |