From b09062755734164dd3dee0529c8511ec20017adc Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Wed, 19 May 2010 19:30:30 +0200 Subject: [PATCH 1/1] remove mount position debug output --- trace-path.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trace-path.pl b/trace-path.pl index 05dccdd..c3fae62 100755 --- a/trace-path.pl +++ b/trace-path.pl @@ -104,7 +104,7 @@ sub handle_events { debug 'key up', $event->key_name; } elsif ( $type == SDL_MOUSEMOTION() ) { my ( $x, $y ) = ( $event->motion_x, $event->motion_y ); - debug 'mouse', $mouse_down, $x, $y; + #debug 'mouse', $mouse_down, $x, $y; my $dx = abs( $last_x - $x ); my $dy = abs( $last_y - $y ); if ( $mouse_down && ( $dx > $mouse_trashold || $dy > $mouse_trashold ) ) { -- 2.20.1