comparison audacious/main.c @ 534:ba0608cbbdaa trunk

[svn] artist - album - title is now the default title format.
author nenolod
date Sat, 28 Jan 2006 09:00:25 -0800
parents 1947144093bc
children e4e897d20791
comparison
equal deleted inserted replaced
533:bcbc6195e82e 534:ba0608cbbdaa
178 2, /* pause between songs time */ 178 2, /* pause between songs time */
179 FALSE, /* pause between songs */ 179 FALSE, /* pause between songs */
180 FALSE, /* show window decorations */ 180 FALSE, /* show window decorations */
181 8, /* mouse wheel scroll step */ 181 8, /* mouse wheel scroll step */
182 FALSE, /* playlist transparent */ 182 FALSE, /* playlist transparent */
183 1, /* 2nd preset (ARTIST - TITLE) */ 183 2, /* 2nd preset (ARTIST - TITLE) */
184 NULL, /* title format */ 184 NULL, /* title format */
185 FALSE, /* software volume control enabled */ 185 FALSE, /* software volume control enabled */
186 TRUE, /* UNUSED (XMMS compatibility mode) */ 186 TRUE, /* UNUSED (XMMS compatibility mode) */
187 TRUE, /* extra eq filtering */ 187 TRUE, /* extra eq filtering */
188 3 /* scroll pl by */ 188 3 /* scroll pl by */
489 489
490 if (!cfg.mainwin_font) 490 if (!cfg.mainwin_font)
491 cfg.mainwin_font = g_strdup(MAINWIN_DEFAULT_FONT); 491 cfg.mainwin_font = g_strdup(MAINWIN_DEFAULT_FONT);
492 492
493 if (!cfg.gentitle_format) 493 if (!cfg.gentitle_format)
494 cfg.gentitle_format = g_strdup("%p - %t"); 494 cfg.gentitle_format = g_strdup("%p - %a - %t");
495 495
496 if (!cfg.outputplugin) { 496 if (!cfg.outputplugin) {
497 #ifdef HAVE_OSS 497 #ifdef HAVE_OSS
498 cfg.outputplugin = g_build_filename(PLUGIN_DIR, plugin_dir_list[0], 498 cfg.outputplugin = g_build_filename(PLUGIN_DIR, plugin_dir_list[0],
499 PLUGIN_FILENAME("OSS"), NULL); 499 PLUGIN_FILENAME("OSS"), NULL);