diff options
| author | Tomer Shalev <shalev.tomer@gmail.com> | 2010-02-19 07:35:47 +0000 |
|---|---|---|
| committer | Tomer Shalev <shalev.tomer@gmail.com> | 2010-02-19 07:35:47 +0000 |
| commit | ac9f850b7d5e37d0e42e78f4c53aa4487721f6e3 (patch) | |
| tree | d72dce3951bb7b00f6e31ef39508a6b3a0d28229 /apps/plugins | |
| parent | 804f67b8ce38be7ce55c10ceb02be26bdf529df0 (diff) | |
| download | rockbox-ac9f850b7d5e37d0e42e78f4c53aa4487721f6e3.zip rockbox-ac9f850b7d5e37d0e42e78f4c53aa4487721f6e3.tar.gz rockbox-ac9f850b7d5e37d0e42e78f4c53aa4487721f6e3.tar.bz2 rockbox-ac9f850b7d5e37d0e42e78f4c53aa4487721f6e3.tar.xz | |
Brickmania: Forgotten one more hard-coded value
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24768 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/brickmania.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/brickmania.c b/apps/plugins/brickmania.c index 37d4663..bc5ca34 100644 --- a/apps/plugins/brickmania.c +++ b/apps/plugins/brickmania.c @@ -819,7 +819,7 @@ typedef struct cube int hits; /* How many hits can this brick take? */ int hiteffect; } cube; -cube brick[80]; +cube brick[NUM_BRICKS_ROWS * NUM_BRICKS_COLS]; typedef struct balls { |