diff options
author | Tomer Shalev <shalev.tomer@gmail.com> | 2010-02-26 14:32:27 +0000 |
---|---|---|
committer | Tomer Shalev <shalev.tomer@gmail.com> | 2010-02-26 14:32:27 +0000 |
commit | adcbb07303cd2a8120db45c3410ad569557bf163 (patch) | |
tree | ffaa204f2c131bfce61737ded20579c1e5bbdc3e /apps | |
parent | 50cb86cff39f70bca363872f454266a8cf8387e8 (diff) |
Brickmania: Fix wrong power image in shown, caused by previous commit
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24926 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/plugins/brickmania.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/brickmania.c b/apps/plugins/brickmania.c index ccd3536895..d5d33e1281 100644 --- a/apps/plugins/brickmania.c +++ b/apps/plugins/brickmania.c @@ -803,11 +803,11 @@ enum power_types POWER_TYPE_LIFE_LOSS, POWER_TYPE_PADDLE_STICKY, POWER_TYPE_PADDLE_SHOOTER, - POWER_TYPE_PADDLE_LONG, - POWER_TYPE_PADDLE_SHORT, - POWER_TYPE_PADDLE_FLIP, POWER_TYPE_PADDLE_NORMAL, + POWER_TYPE_PADDLE_FLIP, POWER_TYPE_EXTRA_BALL, + POWER_TYPE_PADDLE_LONG, + POWER_TYPE_PADDLE_SHORT, POWER_TYPE_COUNT, }; /* increasing this value makes the game with less powerups */ |