Gotta keep height and width in expected order

This commit is contained in:
Jason P 2025-06-23 23:15:20 -05:00
parent ae9c062dc9
commit 56c1ba037a

View File

@ -474,7 +474,7 @@ void Screen::setup()
// === Turn on display and trigger first draw ===
handleSetOn(true);
determineResolution(dispdev->width(), dispdev->height());
determineResolution(dispdev->height(), dispdev->width());
ui->update();
#ifndef USE_EINK
ui->update(); // Some SSD1306 clones drop the first draw, so run twice