From 0db3df126dfd67cd98653c5ff23938fb218a1143 Mon Sep 17 00:00:00 2001 From: Jorj Bauer Date: Thu, 9 Jul 2020 02:40:04 -0400 Subject: [PATCH] remove debugging --- sdl/sdl-display.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/sdl/sdl-display.cpp b/sdl/sdl-display.cpp index 9fc2793..b923116 100644 --- a/sdl/sdl-display.cpp +++ b/sdl/sdl-display.cpp @@ -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 {