changeset 18100:826a0faa2a0f

Switch audio delay keys to something more sane (+ to increase, - to decrease) that happens to also match the documentation.
author diego
date Sat, 15 Apr 2006 14:24:36 +0000
parents c75f2ea46547
children a3d76e5ea6c2
files etc/input.conf input/input.c
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/etc/input.conf	Sat Apr 15 09:36:53 2006 +0000
+++ b/etc/input.conf	Sat Apr 15 14:24:36 2006 +0000
@@ -14,8 +14,8 @@
 UP seek +60
 PGUP seek 600
 PGDWN seek -600
-- audio_delay 0.100
-+ audio_delay -0.100
++ audio_delay 0.100
+- audio_delay -0.100
 [ speed_mult 0.9091	# scale playback speed
 ] speed_mult 1.1
 { speed_mult 0.5
--- a/input/input.c	Sat Apr 15 09:36:53 2006 +0000
+++ b/input/input.c	Sat Apr 15 14:24:36 2006 +0000
@@ -304,8 +304,8 @@
   { {  KEY_DOWN, 0 }, "seek -60" },
   { {  KEY_PAGE_UP, 0 }, "seek 600" },
   { { KEY_PAGE_DOWN, 0 }, "seek -600" },
-  { { '-', 0 }, "audio_delay 0.100" },
-  { { '+', 0 }, "audio_delay -0.100" },
+  { { '+', 0 }, "audio_delay 0.100" },
+  { { '-', 0 }, "audio_delay -0.100" },
   { { '[', 0 }, "speed_mult 0.9091" },
   { { ']', 0 }, "speed_mult 1.1" },
   { { '{', 0 }, "speed_mult 0.5" },