summaryrefslogtreecommitdiff
path: root/apps/plugins/brickmania.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/brickmania.c')
-rw-r--r--apps/plugins/brickmania.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/plugins/brickmania.c b/apps/plugins/brickmania.c
index 15c1641e3f..6d667323c2 100644
--- a/apps/plugins/brickmania.c
+++ b/apps/plugins/brickmania.c
@@ -190,6 +190,12 @@ CONFIG_KEYPAD == SANSA_M200_PAD
190#define UP BUTTON_UP 190#define UP BUTTON_UP
191#define DOWN BUTTON_DOWN 191#define DOWN BUTTON_DOWN
192 192
193#elif CONFIG_KEYPAD == ONDAVX747_PAD
194#define QUIT BUTTON_POWER
195#define LEFT BUTTON_VOL_DOWN
196#define RIGHT BUTTON_VOL_UP
197#define SELECT BUTTON_MENU
198
193#else 199#else
194#error No keymap defined! 200#error No keymap defined!
195#endif 201#endif
@@ -262,7 +268,7 @@ enum menu_items {
262#include "pluginbitmaps/brickmania_break.h" 268#include "pluginbitmaps/brickmania_break.h"
263#endif 269#endif
264 270
265#if (LCD_WIDTH == 320) && (LCD_HEIGHT == 240) 271#if ((LCD_WIDTH == 320) || (LCD_WIDTH == 400)) && (LCD_HEIGHT == 240)
266 272
267/* The time (in ms) for one iteration through the game loop - decrease this 273/* The time (in ms) for one iteration through the game loop - decrease this
268 to speed up the game - note that current_tick is (currently) only accurate 274 to speed up the game - note that current_tick is (currently) only accurate