diff options
author | Max Kellermann <max@duempel.org> | 2008-09-15 09:23:49 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-15 09:23:49 +0200 |
commit | 85fb21cc2bb75cd207d770c6ee7567ddb8e09fd4 (patch) | |
tree | 1e2316c2d4d9ad1b5c4e918281e2bb2508d030fe /src/options.c | |
parent | 3911da5c6169877988b061d1de9b475f5789ba69 (diff) | |
download | mpd-85fb21cc2bb75cd207d770c6ee7567ddb8e09fd4.tar.gz mpd-85fb21cc2bb75cd207d770c6ee7567ddb8e09fd4.tar.xz mpd-85fb21cc2bb75cd207d770c6ee7567ddb8e09fd4.zip |
splash: removed the useless splash screen
The code looks strange and spews lots of warnings. Since it does
nothing useful, and wastes the user's precious time, simply remove it.
Diffstat (limited to 'src/options.c')
-rw-r--r-- | src/options.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/options.c b/src/options.c index fbf079af7..0d3c2a6d0 100644 --- a/src/options.c +++ b/src/options.c @@ -217,7 +217,7 @@ handle_option(int c, char *arg) options.key_file = g_strdup(arg); break; case 'S': /* --key-file */ - options.show_splash = FALSE; + /* the splash screen was removed */ break; #ifdef DEBUG case 'K': /* --dump-keys */ @@ -374,7 +374,6 @@ 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 = FALSE; options.scroll = DEFAULT_SCROLL; options.scroll_sep = g_strdup(DEFAULT_SCROLL_SEP); |