From: Dobrica Pavlinusic Date: Wed, 19 May 2010 17:30:30 +0000 (+0200) Subject: remove mount position debug output X-Git-Url: http://git.rot13.org/?p=perl-landing-airplanes.git;a=commitdiff_plain;h=b09062755734164dd3dee0529c8511ec20017adc remove mount position debug output --- 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 ) ) {