1
0
Fork 0
forked from len0rd/rockbox

Fix wheel in sansa simulator, closes FS#7591

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14308 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Nils Wallménius 2007-08-13 09:43:50 +00:00
parent 121af38dee
commit 414ee9fcc5

View file

@ -722,7 +722,8 @@ long button_get_w_tmo(int ticks)
intptr_t button_get_data(void)
{
return button_data;
/* Needed by the accelerating wheel driver for Sansa e200 */
return 1 << 24;
}
void button_init(void)
@ -738,3 +739,4 @@ void button_clear_queue(void)
{
queue_clear(&button_queue);
}