summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2009-11-03 08:03:13 +0000
committerRafaël Carré <rafael.carre@gmail.com>2009-11-03 08:03:13 +0000
commit00997714ef51f9ac046428041769e32a023635fd (patch)
treec2497ff5e48a5ead667980a75960537b2f2b2607 /apps/plugins
parentf76b2f2046d1eaefae8bf6f46c6388817d8bc284 (diff)
downloadrockbox-00997714ef51f9ac046428041769e32a023635fd.tar.gz
rockbox-00997714ef51f9ac046428041769e32a023635fd.zip
brickmania: fix scrollwheel use
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23492 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-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;