summaryrefslogtreecommitdiff
path: root/firmware/target/arm
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm')
-rw-r--r--firmware/target/arm/as3525/sansa-clipzip/lcd-clipzip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/arm/as3525/sansa-clipzip/lcd-clipzip.c b/firmware/target/arm/as3525/sansa-clipzip/lcd-clipzip.c
index cc30e19fcf..53d80cbbe7 100644
--- a/firmware/target/arm/as3525/sansa-clipzip/lcd-clipzip.c
+++ b/firmware/target/arm/as3525/sansa-clipzip/lcd-clipzip.c
@@ -372,8 +372,8 @@ void lcd_write_data(const fb_data *data, int count)
372 372
373 while (count--) { 373 while (count--) {
374 pixel = *data++; 374 pixel = *data++;
375 lcd_write_dat((pixel >> 0) & 0xFF);
376 lcd_write_dat((pixel >> 8) & 0xFF); 375 lcd_write_dat((pixel >> 8) & 0xFF);
376 lcd_write_dat((pixel >> 0) & 0xFF);
377 } 377 }
378} 378}
379 379