remove "PAX" from display to show higher numbers

This commit is contained in:
Klaus K Wilting 2020-09-21 16:42:19 +02:00
parent 62674e80d3
commit 715663617c

View File

@ -237,7 +237,7 @@ void dp_drawPage(time_t t, bool nextpage) {
// display number of unique macs total Wifi + BLE // display number of unique macs total Wifi + BLE
if (DisplayPage < 5) { if (DisplayPage < 5) {
dp_setFont(MY_FONT_STRETCHED); dp_setFont(MY_FONT_STRETCHED);
dp_printf("PAX:%-4d", macs.size()); dp_printf("%-5d", macs.size());
} }
switch (DisplayPage) { switch (DisplayPage) {