diff --git a/firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c b/firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c index 6ce3e3767f..36084af68e 100644 --- a/firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c +++ b/firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c @@ -531,8 +531,7 @@ void lcd_update_rect(int x, int y, int w, int h) */ if(w == LCD_WIDTH) { - imx233_dcp_memcpy_ex(lcd_dcp_channel, false, &lcd_framebuffer[y][x], - (void *)FRAME, h * w * sizeof(fb_data)); + memcpy((void *)FRAME, &lcd_framebuffer[y][x], w * h * sizeof(fb_data)); } else {