diff options
Diffstat (limited to 'src/drivers/PicoSDL')
| -rw-r--r-- | src/drivers/PicoSDL/Fl_PicoSDL_Graphics_Driver.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/drivers/PicoSDL/Fl_PicoSDL_Graphics_Driver.cxx b/src/drivers/PicoSDL/Fl_PicoSDL_Graphics_Driver.cxx index 4964fce58..571fe8560 100644 --- a/src/drivers/PicoSDL/Fl_PicoSDL_Graphics_Driver.cxx +++ b/src/drivers/PicoSDL/Fl_PicoSDL_Graphics_Driver.cxx @@ -39,7 +39,6 @@ void Fl_PicoSDL_Graphics_Driver::rectf(int x, int y, int w, int h) { uchar r, g, b; Fl::get_color(Fl_Graphics_Driver::color(), r, g, b); - printf("[] %d %d %d\n", r, g, b); SDL_SetRenderDrawColor((SDL_Renderer*)fl_window, r, g, b, SDL_ALPHA_OPAQUE); SDL_Rect rect = {x, y, w, h}; SDL_RenderFillRect((SDL_Renderer*)fl_window, &rect); @@ -50,7 +49,6 @@ void Fl_PicoSDL_Graphics_Driver::line(int x, int y, int x1, int y1) { uchar r, g, b; Fl::get_color(Fl_Graphics_Driver::color(), r, g, b); - printf("-- %d %d %d\n", r, g, b); SDL_SetRenderDrawColor((SDL_Renderer*)fl_window, r, g, b, SDL_ALPHA_OPAQUE); SDL_RenderDrawLine((SDL_Renderer*)fl_window, x, y, x1, y1); } |
