mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-11 06:05:21 -05:00
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
|
#if CONFIG_KEYPAD == IRIVER_H100_PAD
|
||||||
bool button_hold(void) {
|
bool button_hold(void) {
|
||||||
/* temp fix for hold button on irivers */
|
/* 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
|
#endif
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -291,6 +291,10 @@ void button_clear_queue(void)
|
||||||
#if CONFIG_KEYPAD == IRIVER_H100_PAD
|
#if CONFIG_KEYPAD == IRIVER_H100_PAD
|
||||||
bool button_hold(void) {
|
bool button_hold(void) {
|
||||||
/* temp fix for hold button on irivers */
|
/* 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
|
#endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue