This commit is contained in:
Stephen Crane 2018-11-07 21:37:56 +00:00
parent d80a4b0da2
commit c7ffcc56e4
1 changed files with 1 additions and 1 deletions

View File

@ -101,6 +101,6 @@ void TFTDisplay::drawPixel(unsigned x, unsigned y, colour_t col) {
utft.setColor(col);
utft.drawPixel(x, y);
#elif defined(USE_ESPI)
espi.drawPixel(x, y, col);
espi.drawPixel(_dx - x, y, col);
#endif
}