Skip to content

Commit

Permalink
fix AHI
Browse files Browse the repository at this point in the history
  • Loading branch information
henkwiedig committed Dec 28, 2024
1 parent 296bc01 commit 1bd0aa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osd.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1bd0aa0

Please sign in to comment.