From a7fdee664a0b016190d5d1b96a5f75b02de361ea Mon Sep 17 00:00:00 2001 From: Gyorgy Szombathelyi <8644936+gyurco@users.noreply.github.com> Date: Fri, 25 Nov 2022 10:14:09 +0100 Subject: [PATCH] OSD: fix right arrow --- osd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osd.c b/osd.c index 014c0e7..4fe1754 100644 --- a/osd.c +++ b/osd.c @@ -222,7 +222,7 @@ void OsdWriteOffset(unsigned char n, char *s, unsigned char invert, unsigned cha arrowline[1] = 0x14; } if (arrow & OSD_ARROW_RIGHT) { - arrowline[28] = 0x15; + arrowline[27] = 0x15; arrowline[28] = 0x11; } }