1
0
Fork 0
forked from len0rd/rockbox

Fix some residual 'defined but not used' warnings by GCC 4.6.0 for touchscreen targets.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29910 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andree Buschmann 2011-05-22 13:53:31 +00:00
parent 4dad30d038
commit 96b21753bc
3 changed files with 16 additions and 8 deletions

View file

@ -2235,10 +2235,9 @@ static int brickmania_game_loop(void)
if( move_button & BUTTON_TOUCHSCREEN)
{
int data;
short touch_x, touch_y;
short touch_x;
rb->button_status_wdata(&data);
touch_x = FIXED3(data >> 16);
touch_y = FIXED3(data & 0xffff);
if(flip_sides)
{