diff options
author | Tectu <joel@unormal.org> | 2012-05-28 23:24:58 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-05-28 23:24:58 +0200 |
commit | 2fddb0f8edde0c5029f3d4e32be0a41a791469a9 (patch) | |
tree | 8c30da4271239a52e40dbc4a0b5daf561cac66e6 | |
parent | c6b114126289bff945245bece13aebf3336e3e93 (diff) | |
download | uGFX-2fddb0f8edde0c5029f3d4e32be0a41a791469a9.tar.gz uGFX-2fddb0f8edde0c5029f3d4e32be0a41a791469a9.tar.bz2 uGFX-2fddb0f8edde0c5029f3d4e32be0a41a791469a9.zip |
lcdDrawLine() fix, didnt work with x or y >=128
-rwxr-xr-x | glcd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -170,11 +170,11 @@ void lcdDrawPixel(uint16_t x,uint16_t y,uint16_t point) { void lcdDrawLine(uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t color) {
int16_t dy, dx;
- int8_t addx=1, addy=1;
+ int16_t addx=1, addy=1;
int16_t P, diff;
int16_t i=0;
- dx = abs((int8_t)(x2 - x1));
+ dx = abs((int16_t)(x2 - x1));
dy = abs((int16_t)(y2 - y1));
if(x1 > x2)
|