1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-21 10:51:51 +00:00

print the actual commandline to stdout, too

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14531 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
faust3 2005-01-17 21:28:29 +00:00
parent 05d61f2f62
commit fb61c9c56e

View File

@ -1257,8 +1257,8 @@ if (edl_check_mode() == EDL_ERROR && edl_filename)
// Many users forget to include command line in bugreports...
if(verbose>0){
mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_CommandLine);
for(i=1;i<argc;i++)mp_msg(MSGT_FIXME, MSGL_FIXME," '%s'",argv[i]);
mp_msg(MSGT_FIXME, MSGL_FIXME, "\n");
for(i=1;i<argc;i++)mp_msg(MSGT_CPLAYER, MSGL_INFO," '%s'",argv[i]);
mp_msg(MSGT_CPLAYER, MSGL_INFO, "\n");
}
mp_msg_set_level(verbose+MSGL_STATUS);