summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2010-02-18 04:21:15 +0000
committerMichael Giacomelli <giac2000@hotmail.com>2010-02-18 04:21:15 +0000
commitaea6dd036c82a2819e9e6a9888456b3742b0c67e (patch)
tree04012d53edca341e62763153627777e95335d474
parent7dfd594ccae8350f48cbcd502ef551cf5efc6bcf (diff)
downloadrockbox-aea6dd036c82a2819e9e6a9888456b3742b0c67e.tar.gz
rockbox-aea6dd036c82a2819e9e6a9888456b3742b0c67e.zip
Commit FS#11034 by Andrew Engelbrecht. Fixes default contrast value on ipod 3G.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24742 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--docs/CREDITS1
-rw-r--r--firmware/target/arm/ipod/lcd-gray.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/docs/CREDITS b/docs/CREDITS
index ea781af17d..4abfdf3f4e 100644
--- a/docs/CREDITS
+++ b/docs/CREDITS
@@ -528,6 +528,7 @@ Altay Oz
528Peter Lecky 528Peter Lecky
529Mark Borgerding 529Mark Borgerding
530Tobias Diedrich 530Tobias Diedrich
531Andrew Engelbrecht
531 532
532The libmad team 533The libmad team
533The wavpack team 534The wavpack team
diff --git a/firmware/target/arm/ipod/lcd-gray.c b/firmware/target/arm/ipod/lcd-gray.c
index 0cd04772fe..05ae303952 100644
--- a/firmware/target/arm/ipod/lcd-gray.c
+++ b/firmware/target/arm/ipod/lcd-gray.c
@@ -73,7 +73,7 @@ static void invert_display(void);
73#if defined(IPOD_1G2G) 73#if defined(IPOD_1G2G)
74#define DEFAULT_CONTRAST 45 74#define DEFAULT_CONTRAST 45
75#elif defined(IPOD_3G) 75#elif defined(IPOD_3G)
76#define DEFAULT_CONTRAST 55 76#define DEFAULT_CONTRAST 40
77#elif defined(IPOD_MINI) || defined(IPOD_MINI2G) 77#elif defined(IPOD_MINI) || defined(IPOD_MINI2G)
78#define DEFAULT_CONTRAST 42 78#define DEFAULT_CONTRAST 42
79#elif defined(IPOD_4G) 79#elif defined(IPOD_4G)