diff options
author | Tectu <tectu66@gmail.com> | 2012-06-14 04:53:01 -0700 |
---|---|---|
committer | Tectu <tectu66@gmail.com> | 2012-06-14 04:53:01 -0700 |
commit | de7fb3f75695bf22825e93d94e62f38d9b86d4bf (patch) | |
tree | 0ca52ebb41f3251bc2231aafe61f28585b4347b4 /glcd.c | |
parent | cd7682c2c3d174ccd7e2b3acfec048917ec102dc (diff) | |
parent | 04fdc1a2563342b142cf3d1fe7808fae286e27e0 (diff) | |
download | uGFX-de7fb3f75695bf22825e93d94e62f38d9b86d4bf.tar.gz uGFX-de7fb3f75695bf22825e93d94e62f38d9b86d4bf.tar.bz2 uGFX-de7fb3f75695bf22825e93d94e62f38d9b86d4bf.zip |
Merge pull request #7 from abhishek-kakkar/master
Critical bug fix in the Text Rendering Function
Diffstat (limited to 'glcd.c')
-rw-r--r-- | glcd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,7 +5,7 @@ uint16_t lcd_width, lcd_height; uint16_t bgcolor=White, fgcolor=Black; -uint16_t cx, cy; +uint16_t cx=0, cy=0; static uint8_t tpText=0; const uint8_t* font; @@ -151,7 +151,7 @@ void lcdDrawChar(char c) { cx += fontWidth; if(sps != 0) { if(!tpText) - lcdFillArea(cx, cy, sps, fontHeight, fgcolor); + lcdFillArea(cx, cy, cx+sps, cy+fontHeight, bgcolor); cx += sps; } } |