# HG changeset patch # User diego # Date 1145111076 0 # Node ID 826a0faa2a0f56b32b13d32e548da99f116609eb # Parent c75f2ea46547b9dd1963ad9a19b5d85b91ae0571 Switch audio delay keys to something more sane (+ to increase, - to decrease) that happens to also match the documentation. diff -r c75f2ea46547 -r 826a0faa2a0f etc/input.conf --- 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 diff -r c75f2ea46547 -r 826a0faa2a0f input/input.c --- 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" },