aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTectu <joel@unormal.org>2012-06-20 15:37:25 +0200
committerTectu <joel@unormal.org>2012-06-20 15:37:25 +0200
commit83f22aaeb65b2cbff240313a851748d3e771e03d (patch)
treea6bf9de3eb6303650ecb2585003f183c10fc15d2
parent0a31b48c5ac0a706fb15a64d6c7ee1f49151cc0d (diff)
downloaduGFX-83f22aaeb65b2cbff240313a851748d3e771e03d.tar.gz
uGFX-83f22aaeb65b2cbff240313a851748d3e771e03d.tar.bz2
uGFX-83f22aaeb65b2cbff240313a851748d3e771e03d.zip
Revert "very dirty fix"
This reverts commit 0a31b48c5ac0a706fb15a64d6c7ee1f49151cc0d.
-rw-r--r--glcd.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/glcd.c b/glcd.c
index 36064df3..b00fa698 100644
--- a/glcd.c
+++ b/glcd.c
@@ -73,7 +73,6 @@ static const struct GLCDDriverVMT vmt = {
uint16_t lcd_width, lcd_height;
uint16_t bgcolor = White, fgcolor = Black;
uint16_t cx = 0, cy = 0;
-uint16_t cursor_x = 0, cursor_y = 0;
static uint8_t tpText = 0;
const uint8_t* font;
@@ -273,7 +272,6 @@ size_t lcdPutString(const char *str) {
void lcdMoveCursor(uint16_t x, uint16_t y, uint16_t color, uint16_t bkcolor) {
cx = x;
- cursor_x = x;
cy = y;
bgcolor = bkcolor;
fgcolor = color;
@@ -319,7 +317,8 @@ uint16_t lcdMeasureString(const char *str) {
}
void lcdLineBreak() {
- cx = cursor_x;
+ // x=0 seems too much on the edge. So I keep it at 3
+ cx = 3;
cy += lcdGetCurFontHeight();
}