forked from len0rd/rockbox
Remove more tabs
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24550 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
bd0b7363ca
commit
4d5e88245a
18 changed files with 6267 additions and 6267 deletions
|
@ -259,26 +259,26 @@ static void matrix_loop(void)
|
|||
y = 0;
|
||||
firstcoldone = 0;
|
||||
while (i <= ROWS) {
|
||||
/* Skip over spaces */
|
||||
/* this is whear the characters were disappearing */
|
||||
/*
|
||||
/* Skip over spaces */
|
||||
/* this is whear the characters were disappearing */
|
||||
/*
|
||||
while (i <= ROWS && (matrix[i][j].val == 129 ||
|
||||
matrix[i][j].val == -1))
|
||||
i++;
|
||||
*/
|
||||
/* A little more random now for spaces */
|
||||
/* A little more random now for spaces */
|
||||
if (rb->rand() % randomness == 1){
|
||||
while (i <= ROWS && (matrix[i][j].val == 129 ||
|
||||
while (i <= ROWS && (matrix[i][j].val == 129 ||
|
||||
matrix[i][j].val == -1)){
|
||||
i++;
|
||||
randomness--;
|
||||
if(randomness <=1)
|
||||
randomness = 6;}
|
||||
randomness--;
|
||||
if(randomness <=1)
|
||||
randomness = 6;}
|
||||
}else{
|
||||
randomness++;
|
||||
if(randomness >6)
|
||||
randomness = 6;
|
||||
}
|
||||
randomness++;
|
||||
if(randomness >6)
|
||||
randomness = 6;
|
||||
}
|
||||
|
||||
|
||||
if (i > ROWS)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue