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