remove mount position debug output
[perl-landing-airplanes.git] / trace-path.pl
index 05dccdd..c3fae62 100755 (executable)
@@ -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 ) ) {