diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-08-21 19:56:49 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-08-21 19:56:49 +0000 |
| commit | a81f4c35c1f8454a69cfde1f0f354be9827c4d64 (patch) | |
| tree | 0353c6b4ecc46e09a9809727fdb3d397460d3862 | |
| parent | ef99e4e40045087e4896932f3601e39a07051ab1 (diff) | |
| download | rockbox-a81f4c35c1f8454a69cfde1f0f354be9827c4d64.zip rockbox-a81f4c35c1f8454a69cfde1f0f354be9827c4d64.tar.gz rockbox-a81f4c35c1f8454a69cfde1f0f354be9827c4d64.tar.bz2 rockbox-a81f4c35c1f8454a69cfde1f0f354be9827c4d64.tar.xz | |
Sim build fix
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7373 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/win32/button.c | 6 | ||||
| -rw-r--r-- | uisimulator/x11/button-x11.c | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/uisimulator/win32/button.c b/uisimulator/win32/button.c index c11033f..08ef5e1 100644 --- a/uisimulator/win32/button.c +++ b/uisimulator/win32/button.c @@ -251,7 +251,11 @@ void button_clear_queue(void) #if CONFIG_KEYPAD == IRIVER_H100_PAD bool button_hold(void) { /* temp fix for hold button on irivers */ - return 0; + return false; +} +bool remote_button_hold(void) { + /* temp fix for hold button on irivers */ + return false; } #endif diff --git a/uisimulator/x11/button-x11.c b/uisimulator/x11/button-x11.c index 593d926..b2d8ab6 100644 --- a/uisimulator/x11/button-x11.c +++ b/uisimulator/x11/button-x11.c @@ -291,6 +291,10 @@ void button_clear_queue(void) #if CONFIG_KEYPAD == IRIVER_H100_PAD bool button_hold(void) { /* temp fix for hold button on irivers */ - return 0; + return false; +} +bool remote_button_hold(void) { + /* temp fix for hold button on irivers */ + return false; } #endif |