Mercurial > mplayer.hg
changeset 7625:0f1691d27d75
Fixed some typos and an error in the help output.
author | diego |
---|---|
date | Sun, 06 Oct 2002 17:18:57 +0000 |
parents | b1a3b979c630 |
children | 09ccf6147d76 |
files | libvo/vo_aa.c |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/libvo/vo_aa.c Sun Oct 06 16:56:42 2002 +0000 +++ b/libvo/vo_aa.c Sun Oct 06 17:18:57 2002 +0000 @@ -277,7 +277,7 @@ } #endif /* say hello */ - osdmessage(5, 1, "Welcome to ASCII ARTS MPlayer"); + osdmessage(5, 1, "Welcome to ASCII ART MPlayer"); mp_msg(MSGT_VO,MSGL_V,"VO: [aa] screendriver: %s\n", c->driver->name); mp_msg(MSGT_VO,MSGL_V,"VO: [aa] keyboarddriver: %s\n", c->kbddriver->name); @@ -624,13 +624,13 @@ "Additional options vo_aa provides:\n" " -aaosdcolor set osd color\n" " -aasubcolor set subtitle color\n" - " the color params are:\n" + " the color parameters are:\n" " 0 : normal\n" - " 1 : dark\n" + " 1 : dim\n" " 2 : bold\n" " 3 : boldfont\n" " 4 : reverse\n" - " 6 : special\n" + " 5 : special\n" "\n\n" " dT8 8Tb\n" " dT 8 8 Tb\n" @@ -720,11 +720,11 @@ c = aa_autoinit(&aa_defparams); if (c == NULL) { - mp_msg(MSGT_VO,MSGL_ERR,"Can not intialize aalib\n"); + mp_msg(MSGT_VO,MSGL_ERR,"Cannot initialize aalib\n"); return VO_ERROR; } if (!aa_autoinitkbd(c,0)) { - mp_msg(MSGT_VO,MSGL_ERR,"Can not intialize keyboard\n"); + mp_msg(MSGT_VO,MSGL_ERR,"Cannot initialize keyboard\n"); aa_close(c); return VO_ERROR; }