remove debugging

This commit is contained in:
Jorj Bauer 2020-07-09 02:40:04 -04:00
parent 975b11c6c8
commit 0db3df126d
1 changed files with 0 additions and 3 deletions

View File

@ -251,9 +251,6 @@ void SDLDisplay::cachePixel(uint16_t x, uint16_t y, uint8_t color)
uint8_t newColor = (uint16_t) (origColor + color) / 2;
if (x==1 && y==0) {
printf("origcolor: %d color: %d newcolor: %d\n", origColor, color, newColor);
}
cacheDoubleWidePixel(x>>1,y,newColor);
// Else if it's black, we leave whatever was in the other pixel.
} else {