Unverified Commit bff109a1 authored by Bodmer's avatar Bodmer Committed by GitHub

Merge pull request #122 from rdts/patch-1

Update Sprite.cpp
parents 11638178 bdc9821b
...@@ -49,8 +49,8 @@ void* TFT_eSprite::createSprite(int16_t w, int16_t h, uint8_t frames) ...@@ -49,8 +49,8 @@ void* TFT_eSprite::createSprite(int16_t w, int16_t h, uint8_t frames)
if ( w < 1 || h < 1 ) return NULL; if ( w < 1 || h < 1 ) return NULL;
_iwidth = _dwidth = w; this->_width = _iwidth = _dwidth = w;
_iheight = _dheight = h; this->_height = _iheight = _dheight = h;
this->cursor_x = 0; this->cursor_x = 0;
this->cursor_y = 0; this->cursor_y = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment