diff options
author | Stanley Huang <stanleyhuangyc@gmail.com> | 2014-04-04 10:10:45 +0800 |
---|---|---|
committer | Stanley Huang <stanleyhuangyc@gmail.com> | 2014-04-04 10:10:45 +0800 |
commit | 0dbd65cf5602f36f30718869548fd9632ed8958a (patch) | |
tree | 83be8fca6b122ce77f2c5a0b1704b1762344b088 /libraries/MultiLCD/MultiLCD.h | |
parent | 2fcbdcede2f0c36bf059a7f748d27eedef411866 (diff) | |
download | 2021-arduino-obd-0dbd65cf5602f36f30718869548fd9632ed8958a.tar.gz 2021-arduino-obd-0dbd65cf5602f36f30718869548fd9632ed8958a.tar.bz2 2021-arduino-obd-0dbd65cf5602f36f30718869548fd9632ed8958a.zip |
Fix MultiLCD library bug
Diffstat (limited to 'libraries/MultiLCD/MultiLCD.h')
-rw-r--r-- | libraries/MultiLCD/MultiLCD.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/MultiLCD/MultiLCD.h b/libraries/MultiLCD/MultiLCD.h index 5dac47f..cd3d4c1 100644 --- a/libraries/MultiLCD/MultiLCD.h +++ b/libraries/MultiLCD/MultiLCD.h @@ -140,7 +140,7 @@ public: void setXY(uint16_t x, uint16_t y) { m_y = x; - m_y = y; + m_x = y; } void setTextColor(uint16_t color) { |