diff options
author | arpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-04-07 21:42:40 +0000 |
---|---|---|
committer | arpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-04-07 21:42:40 +0000 |
commit | 4251cb5e865c7335cc3846315df54ae2e4770180 (patch) | |
tree | 82339067d4c4536c83e0fc2c33d69a6107f1a131 /mplayer.c | |
parent | e0ca9721bcf07175121316cc4c779d55c9a9d867 (diff) | |
download | mpv-4251cb5e865c7335cc3846315df54ae2e4770180.tar.bz2 mpv-4251cb5e865c7335cc3846315df54ae2e4770180.tar.xz |
missing codecs.conf is no more a WARNING, it's FATAL
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@305 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r-- | mplayer.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -533,7 +533,8 @@ if(!filename){ // check codec.conf if(!parse_codec_cfg(get_path("codecs.conf"))){ - printf("Warning! Couldn't load codecs.conf!"); + printf("(copy/link DOCS/codecs.conf to ~/.mplayer/codecs.conf)\n"); + exit(1); } |