summaryrefslogtreecommitdiff
path: root/apps/onplay.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/onplay.c
parentfe706d2754220794d6a22370424391e146b75c95 (diff)
downloadrockbox-1afa395c2fe08ed937dbb0624ade48e46be87efe.tar.gz
rockbox-1afa395c2fe08ed937dbb0624ade48e46be87efe.zip
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/onplay.c')
-rw-r--r--apps/onplay.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/onplay.c b/apps/onplay.c
index 7598aa3125..3e085cea59 100644
--- a/apps/onplay.c
+++ b/apps/onplay.c
@@ -330,7 +330,7 @@ static int insert_data_in_file(char *fname, int fpos, char *buf, int num_bytes)
330 330
331static void fileerror(int rc) 331static void fileerror(int rc)
332{ 332{
333 splash(HZ*2, 0, true, "File error: %d", rc); 333 splash(HZ*2, true, "File error: %d", rc);
334} 334}
335 335
336static const unsigned char empty_id3_header[] = 336static const unsigned char empty_id3_header[] =
@@ -352,7 +352,7 @@ static bool vbr_fix(void)
352 int unused_space; 352 int unused_space;
353 353
354 if(mpeg_status()) { 354 if(mpeg_status()) {
355 splash(HZ*2, 0, true, str(LANG_VBRFIX_STOP_PLAY)); 355 splash(HZ*2, true, str(LANG_VBRFIX_STOP_PLAY));
356 return onplay_result; 356 return onplay_result;
357 } 357 }
358 358
@@ -473,7 +473,7 @@ static bool vbr_fix(void)
473 { 473 {
474 /* Not a VBR file */ 474 /* Not a VBR file */
475 DEBUGF("Not a VBR file\n"); 475 DEBUGF("Not a VBR file\n");
476 splash(HZ*2, 0, true, str(LANG_VBRFIX_NOT_VBR)); 476 splash(HZ*2, true, str(LANG_VBRFIX_NOT_VBR));
477 } 477 }
478 478
479 return false; 479 return false;