diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2008-05-29 21:53:49 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2008-05-29 21:53:49 +0000 |
commit | 3b730a280d0fab13b65d03514a122fc7f8d86686 (patch) | |
tree | 782089519564002a3155bc715454132f41d45ff0 /uisimulator | |
parent | d52bea8a90a4888efae8a8716d0025d3f4238733 (diff) | |
download | rockbox-3b730a280d0fab13b65d03514a122fc7f8d86686.tar.gz rockbox-3b730a280d0fab13b65d03514a122fc7f8d86686.zip |
Fix red while keeping menu item.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17658 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-rw-r--r-- | uisimulator/common/stubs.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c index 5b02a4256e..00be8624df 100644 --- a/uisimulator/common/stubs.c +++ b/uisimulator/common/stubs.c @@ -306,6 +306,13 @@ void button_set_flip(bool yesno) (void)yesno; } +#ifdef HAVE_TOUCHPAD_SENSITIVITY_SETTING +void touchpad_set_sensitivity(int level) +{ + (void)level; +} +#endif + /* assure an unused place to direct virtual pointers to */ #define VIRT_SIZE 0xFFFF /* more than enough for our string ID range */ unsigned char vp_dummy[VIRT_SIZE]; |