From 1bd0aa03e447c2ea6444eef8fb507ec9d102000b Mon Sep 17 00:00:00 2001 From: Henk Wiedig Date: Sat, 28 Dec 2024 20:30:28 +0100 Subject: [PATCH] fix AHI --- osd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osd.c b/osd.c index e6aaab2..de63423 100644 --- a/osd.c +++ b/osd.c @@ -691,7 +691,7 @@ int y_end = 500; void LineTranspose(uint8_t* bmpData, int posX0, int posY0, int posX1, int posY1, uint8_t color, int thickness) { #if defined(_x86) || defined(__ROCKCHIP__) - drawLine(posX0, posY0, posX1, posY1, getcolor(color), thickness, true); + drawLineGS(posX0, posY0, posX1, posY1, getcolor(color), thickness, true); #else drawLine( bmpData, posX0, posY0, posX1, posY1, color, thickness); #endif