diff --git a/firmware/target/arm/as3525/sansa-clipzip/lcd-clipzip.c b/firmware/target/arm/as3525/sansa-clipzip/lcd-clipzip.c index 8e36ff59d1..d071844860 100644 --- a/firmware/target/arm/as3525/sansa-clipzip/lcd-clipzip.c +++ b/firmware/target/arm/as3525/sansa-clipzip/lcd-clipzip.c @@ -400,10 +400,10 @@ void lcd_update_rect(int x, int y, int width, int height) return; } - /* align horizontal position to even for wisechip display */ + /* update entire horizontal strip for display type 0 (wisechip) */ if (lcd_type == 0) { - x = x & ~1; - x_end = (x_end + 1) & ~1; + x = 0; + x_end = 96; } /* correct rectangle (if necessary) */