Unverified Commit 6a42e4b1 authored by Bodmer's avatar Bodmer Committed by GitHub

Remove debug lines to fix rendering part of #303

parent b5a74a01
...@@ -4598,12 +4598,10 @@ int16_t TFT_eSPI::drawString(const char *string, int32_t poX, int32_t poY, uint8 ...@@ -4598,12 +4598,10 @@ int16_t TFT_eSPI::drawString(const char *string, int32_t poX, int32_t poY, uint8
} }
else else
#endif #endif
Serial.print("sumX="); {
while (*string) { while (*string) sumX += drawChar(*(string++), poX+sumX, poY, font);
sumX += drawChar(*(string++), poX+sumX, poY, font);
Serial.print(sumX);
} }
Serial.println();
//vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv DEBUG vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv //vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv DEBUG vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
// Switch on debugging for the padding areas // Switch on debugging for the padding areas
//#define PADDING_DEBUG //#define PADDING_DEBUG
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment