missing parens

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31576 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2012-01-04 07:48:52 +00:00
parent 127af53c5b
commit 1280569106

View file

@ -2048,7 +2048,7 @@ static bool dbg_scrollwheel(void)
/* show effective accelerated scrollspeed */
lcd_putsf(0, 6, "accel. speed: %4d",
button_apply_acceleration( (1<<31)|(1<<24)|wheel_velocity);
button_apply_acceleration((1<<31)|(1<<24)|wheel_velocity) );
lcd_update();
}