Sim build fix

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7373 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2005-08-21 19:56:49 +00:00
parent ef99e4e400
commit a81f4c35c1
2 changed files with 10 additions and 2 deletions

View file

@ -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

View file

@ -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