removed unused variable ly from fillCircle()

removed unused variable (ly = y0) to sanitize compiler warning
This commit is contained in:
Verkehrsrot 2020-04-10 22:34:36 +02:00 committed by GitHub
parent 875b451590
commit f5872c7440
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -1688,7 +1688,6 @@ void TFT_eSPI::fillCircle(int32_t x0, int32_t y0, int32_t r, uint32_t color)
int32_t x = 1;
int32_t dx = 1;
int32_t dy = r+r;
int32_t ly = y0;
int32_t p = -(r>>1);
int32_t xo = 0;