aboutsummaryrefslogtreecommitdiffstats
path: root/src/options.c
diff options
context:
space:
mode:
authorAndreas Obergrusberger <tradiaz@yahoo.de>2006-09-08 14:58:33 +0000
committerAndreas Obergrusberger <tradiaz@yahoo.de>2006-09-08 14:58:33 +0000
commita830ea432b79271a2e0087cc3d906f548e6640a5 (patch)
tree9e7e9e0f9aece115a26d82beeb1bb35739a0fbca /src/options.c
parent7f45df1d310fbba27ef80e55f4c4723f83028aea (diff)
downloadmpd-a830ea432b79271a2e0087cc3d906f548e6640a5.tar.gz
mpd-a830ea432b79271a2e0087cc3d906f548e6640a5.tar.xz
mpd-a830ea432b79271a2e0087cc3d906f548e6640a5.zip
disable splash by default
git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@4744 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r--src/options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/options.c b/src/options.c
index a9a1f1f36..f9bfcdd69 100644
--- a/src/options.c
+++ b/src/options.c
@@ -374,7 +374,7 @@ options_init( void )
options.screen_list = g_strsplit_set(DEFAULT_SCREEN_LIST, " ", 0);
options.timedisplay_type = DEFAULT_TIMEDISPLAY_TYPE;
options.lyrics_timeout = DEFAULT_LYRICS_TIMEOUT;
- options.show_splash = TRUE;
+ options.show_splash = FALSE;
return &options;
}