mirror of
https://github.com/Bodmer/TFT_eSPI.git
synced 2025-08-07 06:34:44 +02:00
Remove debug lines to fix rendering part of #303
This commit is contained in:
10
TFT_eSPI.cpp
10
TFT_eSPI.cpp
@@ -4598,12 +4598,10 @@ int16_t TFT_eSPI::drawString(const char *string, int32_t poX, int32_t poY, uint8
|
||||
}
|
||||
else
|
||||
#endif
|
||||
Serial.print("sumX=");
|
||||
while (*string) {
|
||||
sumX += drawChar(*(string++), poX+sumX, poY, font);
|
||||
Serial.print(sumX);
|
||||
}
|
||||
Serial.println();
|
||||
{
|
||||
while (*string) sumX += drawChar(*(string++), poX+sumX, poY, font);
|
||||
}
|
||||
|
||||
//vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv DEBUG vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
|
||||
// Switch on debugging for the padding areas
|
||||
//#define PADDING_DEBUG
|
||||
|
Reference in New Issue
Block a user