D2: Adjust the timing delay in ltv250qv_write() since several users still report seeing the 'repeated lines' display bug.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19131 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rob Purchase 2008-11-17 21:56:08 +00:00
parent 131c6c2670
commit 3a631f9f64

View file

@ -77,7 +77,7 @@ void lcd_set_contrast(int val)
static void delay_loop(void)
{
unsigned long x;
for (x = (unsigned)(FREQ>>23); x; x--);
for (x = (unsigned)(FREQ>>24); x; x--);
}
#define DELAY delay_loop()