Package: ltris
Version: 1.0.12-1
Severity: wishlist
Tags: patch
Even at the maximum 'Horizontal Delay' setting of 5, I find the keyboard
controls too twitchy -- it can be hard to move by a single column.
The attached trivial patch ups the range from 0-5 to 0-9.
--- src/manager.c.orig 2008-03-29 11:39:17.000000000 +0000
+++ src/manager.c 2009-12-09 22:27:20.000000000 +0000
@@ -376,7 +376,7 @@
menu_add( cont, item_create_link( _("Player2"), HINT_CONTROLS, cont_player2 ) );
menu_add( cont, item_create_link( _("Player3"), HINT_CONTROLS, cont_player3 ) );
menu_add( cont, item_create_separator( "" ) );
- menu_add( cont, item_create_range( _("Horizontal Delay:"), HINT_HORIDEL,&config.hori_delay, 0, 5, 1 ) );
+ menu_add( cont, item_create_range( _("Horizontal Delay:"), HINT_HORIDEL,&config.hori_delay, 0, 9, 1 ) );
menu_add( cont, item_create_separator( "" ) );
menu_add( cont, item_create_link( _("Back"), HINT_, _main ) );
/* all keys used */