summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/brickmania.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/brickmania.c b/apps/plugins/brickmania.c
index 9bf4cf2b06..8549d7c1e2 100644
--- a/apps/plugins/brickmania.c
+++ b/apps/plugins/brickmania.c
@@ -1982,8 +1982,8 @@ static int brickmania_game_loop(void)
1982 button_right = move_button & (RIGHT | ALTRIGHT); 1982 button_right = move_button & (RIGHT | ALTRIGHT);
1983 button_left = move_button & (LEFT | ALTLEFT); 1983 button_left = move_button & (LEFT | ALTLEFT);
1984#else 1984#else
1985 button_right =((move_button & RIGHT)|| SCROLL_FWD(move_button)); 1985 button_right =((move_button & RIGHT)|| SCROLL_FWD(button));
1986 button_left =((move_button & LEFT) ||SCROLL_BACK(move_button)); 1986 button_left =((move_button & LEFT) ||SCROLL_BACK(button));
1987#endif 1987#endif
1988 if ((game_state==ST_PAUSE) && (button_right || button_left)) 1988 if ((game_state==ST_PAUSE) && (button_right || button_left))
1989 continue; 1989 continue;