Whoops. lcdShiftV8 had up/down swapped :)
This commit is contained in:
parent
80ea686dc8
commit
c69431c085
|
@ -180,7 +180,7 @@ void lcdShiftH(bool right, bool wrap) {
|
||||||
|
|
||||||
void lcdShiftV8(bool up, bool wrap) {
|
void lcdShiftV8(bool up, bool wrap) {
|
||||||
uint8_t tmp[RESX];
|
uint8_t tmp[RESX];
|
||||||
if (up) {
|
if (!up) {
|
||||||
if (wrap)
|
if (wrap)
|
||||||
memmove(tmp, lcdBuffer, RESX);
|
memmove(tmp, lcdBuffer, RESX);
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue