summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomer Shalev <shalev.tomer@gmail.com>2010-02-19 07:35:47 +0000
committerTomer Shalev <shalev.tomer@gmail.com>2010-02-19 07:35:47 +0000
commitac9f850b7d5e37d0e42e78f4c53aa4487721f6e3 (patch)
treed72dce3951bb7b00f6e31ef39508a6b3a0d28229
parent804f67b8ce38be7ce55c10ceb02be26bdf529df0 (diff)
downloadrockbox-ac9f850b7d5e37d0e42e78f4c53aa4487721f6e3.tar.gz
rockbox-ac9f850b7d5e37d0e42e78f4c53aa4487721f6e3.zip
Brickmania: Forgotten one more hard-coded value
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24768 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/brickmania.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/brickmania.c b/apps/plugins/brickmania.c
index 37d4663e91..bc5ca34a33 100644
--- a/apps/plugins/brickmania.c
+++ b/apps/plugins/brickmania.c
@@ -819,7 +819,7 @@ typedef struct cube
819 int hits; /* How many hits can this brick take? */ 819 int hits; /* How many hits can this brick take? */
820 int hiteffect; 820 int hiteffect;
821} cube; 821} cube;
822cube brick[80]; 822cube brick[NUM_BRICKS_ROWS * NUM_BRICKS_COLS];
823 823
824typedef struct balls 824typedef struct balls
825{ 825{