forked from len0rd/rockbox
Get rid of the 'center' parameter for splashes. There were only 2 of almost 500 splashes which were not centered.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12807 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
2c643b9f3e
commit
4d6374c923
107 changed files with 529 additions and 553 deletions
|
|
@ -137,7 +137,7 @@ void generate(void)
|
|||
rb->write(fd,&dirs_count,sizeof(int));
|
||||
if (fd < 0)
|
||||
{
|
||||
rb->splash(HZ, true, "Couldnt open %s", RFA_FILE);
|
||||
rb->splash(HZ, "Couldnt open %s", RFA_FILE);
|
||||
return;
|
||||
}
|
||||
#ifndef HAVE_LCD_CHARCELLS
|
||||
|
|
@ -242,11 +242,11 @@ void edit_list(void)
|
|||
{
|
||||
case 0:
|
||||
exit = true;
|
||||
rb->splash(HZ*2, true, "Saving " RFA_FILE);
|
||||
rb->splash(HZ*2, "Saving " RFA_FILE);
|
||||
fd = rb->open(RFA_FILE, O_CREAT|O_WRONLY);
|
||||
if (fd < 0)
|
||||
{
|
||||
rb->splash(HZ, true, "Could Not Open " RFA_FILE);
|
||||
rb->splash(HZ, "Could Not Open " RFA_FILE);
|
||||
break;
|
||||
}
|
||||
dirs_count = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue