diff options
author | Kalle Wallin <kaw@linux.se> | 2005-06-15 13:04:22 +0000 |
---|---|---|
committer | Kalle Wallin <kaw@linux.se> | 2005-06-15 13:04:22 +0000 |
commit | c94d06df7370bfe88f6a42f22142f05927c5c44b (patch) | |
tree | a1be838de371da566b4acb6b52e68b08fcb0dcef /src/options.c | |
parent | 7c9aa09019ac6ab2cdf847d785c2dc127a46ac94 (diff) | |
download | mpd-c94d06df7370bfe88f6a42f22142f05927c5c44b.tar.gz mpd-c94d06df7370bfe88f6a42f22142f05927c5c44b.tar.xz mpd-c94d06df7370bfe88f6a42f22142f05927c5c44b.zip |
New configuraton option: screen-list
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3358 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/options.c')
-rw-r--r-- | src/options.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/options.c b/src/options.c index e1ed99e63..dd31203b6 100644 --- a/src/options.c +++ b/src/options.c @@ -367,6 +367,7 @@ options_init( void ) options.audible_bell = TRUE; options.crossfade_time = DEFAULT_CROSSFADE_TIME; options.seek_time = 1; + options.screen_list = g_strsplit_set(DEFAULT_SCREEN_LIST, " ", 0); return &options; } |