diff options
-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 c11033fb6b..08ef5e15d8 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 593d926b3f..b2d8ab6c7a 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 |