aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2013-07-01 00:14:18 +1000
committerinmarket <andrewh@inmarket.com.au>2013-07-01 00:14:18 +1000
commita51ffd5b6891a9fb87ac3a903ae6b415fc32c726 (patch)
tree425b4682d120f8dc8db2b7a44af420a7d90c2013 /include
parent8ed9e763c0f97f2946990a911bb940f8c80ff761 (diff)
parentd45bba45e178940015eb31dc93e97eba9aebc93e (diff)
downloaduGFX-a51ffd5b6891a9fb87ac3a903ae6b415fc32c726.tar.gz
uGFX-a51ffd5b6891a9fb87ac3a903ae6b415fc32c726.tar.bz2
uGFX-a51ffd5b6891a9fb87ac3a903ae6b415fc32c726.zip
Merge remote-tracking branch 'origin/master' into GWIN
Diffstat (limited to 'include')
-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