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.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/plugins/brickmania.c b/apps/plugins/brickmania.c
index 379aadfe65..59059b8cc7 100644
--- a/apps/plugins/brickmania.c
+++ b/apps/plugins/brickmania.c
@@ -2235,10 +2235,9 @@ static int brickmania_game_loop(void)
2235 if( move_button & BUTTON_TOUCHSCREEN) 2235 if( move_button & BUTTON_TOUCHSCREEN)
2236 { 2236 {
2237 int data; 2237 int data;
2238 short touch_x, touch_y; 2238 short touch_x;
2239 rb->button_status_wdata(&data); 2239 rb->button_status_wdata(&data);
2240 touch_x = FIXED3(data >> 16); 2240 touch_x = FIXED3(data >> 16);
2241 touch_y = FIXED3(data & 0xffff);
2242 2241
2243 if(flip_sides) 2242 if(flip_sides)
2244 { 2243 {