mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-20 02:22:43 -05:00
iPod Classic: Fix hold switch glitches
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29242 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
87da25c87c
commit
91f9b0b8ca
1 changed files with 1 additions and 1 deletions
|
|
@ -383,7 +383,7 @@ bool button_hold(void)
|
||||||
#if CONFIG_CPU==S5L8701
|
#if CONFIG_CPU==S5L8701
|
||||||
return ((PDAT14 & (1 << 6)) == 0);
|
return ((PDAT14 & (1 << 6)) == 0);
|
||||||
#elif CONFIG_CPU==S5L8702
|
#elif CONFIG_CPU==S5L8702
|
||||||
return ((PDATE & (1 << 3)) == 0);
|
return ((PDATE & (1 << 4)) == 0);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue