Sim build fix
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7373 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
ef99e4e400
commit
a81f4c35c1
2 changed files with 10 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue