summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTorne Wuff <torne@wolfpuppy.org.uk>2010-05-20 18:58:33 +0000
committerTorne Wuff <torne@wolfpuppy.org.uk>2010-05-20 18:58:33 +0000
commit2960052d28eb5b5e62c3f904b84b323409747826 (patch)
treee8cb1fd73e6e298673d04c8a6a1136f18d506203
parentd9e508b584aba32c51c3071bbac0ecf022883094 (diff)
downloadrockbox-2960052d28eb5b5e62c3f904b84b323409747826.tar.gz
rockbox-2960052d28eb5b5e62c3f904b84b323409747826.zip
Increaase default ipod 3g contrast, to a value between the last two.
It seems there is some significant variance between different greyscale ipods of the same model, so it's unlikely that *any* value will be great for everyone. I'm hoping that this is just high enough that the lightest screens aren't totally blank, but not dark enough that the darkest screens are entirely unreadably black ;) This rather unsatisfactory compromise is to help us get a new bootloader release out (since bootloaders can't have their contrast adjusted) - a real fix would be to detect the LCD type, which the OF appears to be able to do (maybe). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26208 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/target/arm/ipod/lcd-gray.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/arm/ipod/lcd-gray.c b/firmware/target/arm/ipod/lcd-gray.c
index 05ae303952..11d4cba2f5 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);
#if defined(IPOD_1G2G)
#define DEFAULT_CONTRAST 45
#elif defined(IPOD_3G)
-#define DEFAULT_CONTRAST 40
+#define DEFAULT_CONTRAST 50
#elif defined(IPOD_MINI) || defined(IPOD_MINI2G)
#define DEFAULT_CONTRAST 42
#elif defined(IPOD_4G)