diff options
| -rw-r--r-- | firmware/target/arm/ipod/button-clickwheel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/arm/ipod/button-clickwheel.c b/firmware/target/arm/ipod/button-clickwheel.c index eb7c36b..46e9109 100644 --- a/firmware/target/arm/ipod/button-clickwheel.c +++ b/firmware/target/arm/ipod/button-clickwheel.c @@ -391,7 +391,7 @@ bool button_hold(void) bool headphones_inserted(void) { #if CONFIG_CPU==S5L8701 - return ((PDAT14 & (1 << 5)) == 0); + return ((PDAT14 & (1 << 5)) != 0); #elif CONFIG_CPU==S5L8702 //TODO: Implement return false; |