From: Andreas Obergrusberger Date: Mon, 7 Aug 2006 18:45:02 +0000 (+0000) Subject: fix a bug when writing lyrics. 1st line is written now X-Git-Tag: v0.12_alpha1~373 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=58ed603d3d4b2737de7d01cef79a6fc68c513709;p=ncmpc.git fix a bug when writing lyrics. 1st line is written now git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@4588 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- diff --git a/src/screen_lyrics.c b/src/screen_lyrics.c index e54e6a4..9c159bc 100644 --- a/src/screen_lyrics.c +++ b/src/screen_lyrics.c @@ -352,7 +352,7 @@ int store_lyr_hd() int i; char line_buf[1024]; - for(i = 4; i <= lyr_text.text->len; i++) + for(i = 3; i <= lyr_text.text->len; i++) { if(get_text_line(&lyr_text, i, line_buf, 1024) == -1); fputs(line_buf, lyr_file);