diff options
author | mrwastl <mrwastl@users.sourceforge.net> | 2011-06-10 20:19:02 +0200 |
---|---|---|
committer | mrwastl <mrwastl@users.sourceforge.net> | 2011-06-10 20:19:02 +0200 |
commit | 09a54aa0ca57e099e7eecd0a06621a932eda6f98 (patch) | |
tree | b45e9f75fb0d3dc9995149d83369d5f8b44abaf9 | |
parent | d9acf155a469b5ccb3f3b2c39c8e8fa8a1ba8811 (diff) | |
download | graphlcd-base-09a54aa0ca57e099e7eecd0a06621a932eda6f98.tar.gz graphlcd-base-09a54aa0ca57e099e7eecd0a06621a932eda6f98.tar.bz2 |
small fix to previous commit (text effects)
-rw-r--r-- | glcdskin/object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glcdskin/object.c b/glcdskin/object.c index c7426bc..6e87b95 100644 --- a/glcdskin/object.c +++ b/glcdskin/object.c @@ -519,7 +519,7 @@ void cSkinObject::Render(GLCD::cBitmap * screen) case tfxShadow: loops = 1; for (int fxi = 0; fxi < fxOff; fxi++) { - varx[fxi] = fxi + 1; vary[0] = fxi + 1; + varx[fxi] = fxi + 1; vary[fxi] = fxi + 1; loops++; } break; |