summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2024-04-06 21:36:45 -0400
committerSolomon Peachy <pizza@shaftnet.org>2024-04-06 21:37:14 -0400
commit4e1faa032f31783880fefb81805ad40c0fc30c2e (patch)
tree05248665f5a79fed0a54cd0d936c3cd2b3b9c26c
parent75ad7c9792ec110cc92e2409d8c0345979660a7b (diff)
downloadrockbox-4e1faa032f31783880fefb81805ad40c0fc30c2e.tar.gz
rockbox-4e1faa032f31783880fefb81805ad40c0fc30c2e.zip
lcd: fix yellow from accidental commit
Change-Id: I05c2676bcd5a4a0f75804af0e5367da5acd4ee55
-rw-r--r--firmware/asm/lcd-as-memframe.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/asm/lcd-as-memframe.c b/firmware/asm/lcd-as-memframe.c
index 8ea9e68a39..e952f4f7f0 100644
--- a/firmware/asm/lcd-as-memframe.c
+++ b/firmware/asm/lcd-as-memframe.c
@@ -177,5 +177,7 @@ void lcd_write_yuv420_lines_odither(fb_data *dst,
177 int width, int stride, 177 int width, int stride,
178 int x_screen, int y_screen) 178 int x_screen, int y_screen)
179{ 179{
180 (void)x_screen;
181 (void)y_screen;
180 return lcd_write_yuv420_lines(dst, src, width, stride); 182 return lcd_write_yuv420_lines(dst, src, width, stride);
181} 183}