From a530896e2026dd0d76dc2e22a0f1a164bb98c9c7 Mon Sep 17 00:00:00 2001 From: Bill Kendrick Date: Mon, 14 Nov 2022 22:55:09 -0800 Subject: [PATCH] Squelch a debug output s/printf(...)/DEBUG_PRINTF(...)/ --- src/tuxpaint.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tuxpaint.c b/src/tuxpaint.c index f927204e8..fadb78d0b 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -22,7 +22,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA (See COPYING.txt) - June 14, 2002 - October 25, 2022 + June 14, 2002 - November 14, 2022 */ #include "platform.h" @@ -3631,8 +3631,8 @@ static void mainloop(void) cur_tool = whicht; draw_toolbar(); update_screen_rect(&r_tools); - printf("screenrectr_tools %d, %d, %d, %d\n", r_tools.x, - r_tools.y, r_tools.w, r_tools.h); + DEBUG_PRINTF("screenrectr_tools %d, %d, %d, %d\n", r_tools.x, + r_tools.y, r_tools.w, r_tools.h); playsound(screen, 1, SND_CLICK, 0, SNDPOS_LEFT, SNDDIST_NEAR); /* FIXME: this "if" is just plain gross */