aboutsummaryrefslogtreecommitdiffstats
path: root/src/conf.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/conf.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/conf.c b/src/conf.c
index 9222ed18e..7e4b4e1ae 100644
--- a/src/conf.c
+++ b/src/conf.c
@@ -61,6 +61,7 @@
#define CONF_CROSSFADE_TIME "crossfade-time"
#define CONF_SEARCH_MODE "search-mode"
#define CONF_HIDE_CURSOR "hide-cursor"
+#define CONF_SEEK_TIME "seek-time"
typedef enum {
KEY_PARSER_UNKNOWN,
@@ -482,6 +483,10 @@ read_rc_file(char *filename, options_t *options)
{
options->hide_cursor = atoi(value);
}
+ else if( !strcasecmp(CONF_SEEK_TIME, name) )
+ {
+ options->seek_time = atoi(value);
+ }
else
{
match_found = 0;