diff options
author | Tectu <joel@unormal.org> | 2012-07-22 02:26:16 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-07-22 02:26:16 +0200 |
commit | 8bc4bc974437c64cc22ae74c1f227588239842c0 (patch) | |
tree | ce7235ca8de45628e9d11f2aed0c7ceb7e048569 /glcd/glcd.c | |
parent | d0c92628edf94693ae0bb07d9ecc5d581c7ba4be (diff) | |
download | uGFX-8bc4bc974437c64cc22ae74c1f227588239842c0.tar.gz uGFX-8bc4bc974437c64cc22ae74c1f227588239842c0.tar.bz2 uGFX-8bc4bc974437c64cc22ae74c1f227588239842c0.zip |
small fix
Diffstat (limited to 'glcd/glcd.c')
-rw-r--r-- | glcd/glcd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glcd/glcd.c b/glcd/glcd.c index 87fd790b..a419b7f2 100644 --- a/glcd/glcd.c +++ b/glcd/glcd.c @@ -257,7 +257,7 @@ static void lcdWriteStream(uint16_t *buffer, uint16_t size) { chMsgSend(workerThread, (msg_t)&msg); } -void lcdVerticalScroll(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, int16_t lines) { +void lcdVerticalScroll(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint16_t lines) { struct glcd_msg_vertical_scroll msg; msg.action = GLCD_VERTICAL_SCROLL; |