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
|
|
@ -47,7 +47,7 @@ unsigned char *parse(int fd) {
|
|||
ret=parseMExpr();
|
||||
if(syntaxerror) {
|
||||
PUTS("Syntaxerror");
|
||||
rb->splash(HZ*3,true,errormsg);
|
||||
rb->splash(HZ*3,errormsg);
|
||||
}
|
||||
parser_accept(TOKEN_EOF);
|
||||
return ret;
|
||||
|
|
@ -267,7 +267,7 @@ unsigned char *parseMExpr() {
|
|||
if(filter[currentlevel][i]) // this should always be true
|
||||
ret[i]=ret[i] || ret2[i];
|
||||
else
|
||||
rb->splash(HZ*2,true,"An or is having a filter, bad.");
|
||||
rb->splash(HZ*2,"An or is having a filter, bad.");
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue