From 4d5e88245a3aa6ff80df63c5a145b2b41495cbb2 Mon Sep 17 00:00:00 2001 From: Andree Buschmann Date: Sun, 7 Feb 2010 18:38:47 +0000 Subject: Remove more tabs git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24550 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/matrix.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'apps/plugins/matrix.c') diff --git a/apps/plugins/matrix.c b/apps/plugins/matrix.c index ee66135..09d8ec7 100644 --- a/apps/plugins/matrix.c +++ b/apps/plugins/matrix.c @@ -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) -- cgit v1.1