summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2008-05-29 21:53:49 +0000
committerMichael Sevakis <jethead71@rockbox.org>2008-05-29 21:53:49 +0000
commit3b730a280d0fab13b65d03514a122fc7f8d86686 (patch)
tree782089519564002a3155bc715454132f41d45ff0
parentd52bea8a90a4888efae8a8716d0025d3f4238733 (diff)
downloadrockbox-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
-rw-r--r--uisimulator/common/stubs.c7
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)
306 (void)yesno; 306 (void)yesno;
307} 307}
308 308
309#ifdef HAVE_TOUCHPAD_SENSITIVITY_SETTING
310void touchpad_set_sensitivity(int level)
311{
312 (void)level;
313}
314#endif
315
309/* assure an unused place to direct virtual pointers to */ 316/* assure an unused place to direct virtual pointers to */
310#define VIRT_SIZE 0xFFFF /* more than enough for our string ID range */ 317#define VIRT_SIZE 0xFFFF /* more than enough for our string ID range */
311unsigned char vp_dummy[VIRT_SIZE]; 318unsigned char vp_dummy[VIRT_SIZE];