mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 05:05:20 -05:00
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:
parent
131c6c2670
commit
3a631f9f64
1 changed files with 1 additions and 1 deletions
|
|
@ -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()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue