aboutsummaryrefslogtreecommitdiffstats
path: root/include/gdisp/lld/emulation.c
diff options
context:
space:
mode:
Diffstat (limited to 'include/gdisp/lld/emulation.c')
-rw-r--r--include/gdisp/lld/emulation.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gdisp/lld/emulation.c b/include/gdisp/lld/emulation.c
index c64f8259..49a26697 100644
--- a/include/gdisp/lld/emulation.c
+++ b/include/gdisp/lld/emulation.c
@@ -54,7 +54,7 @@ GDISPDriver GDISP;
if (x1 > x0)
gdisp_lld_fill_area(x0, y0, x1-x0+1, 1, color);
else
- gdisp_lld_fill_area(x0, y1, x0-x1+1, 1, color);
+ gdisp_lld_fill_area(x1, y0, x0-x1+1, 1, color);
return;
}
#endif