summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-07-30 02:04:00 +0200
committerwm4 <wm4@nowhere>2012-07-30 02:04:00 +0200
commit5c630c96cd9fdfdd33c85706b2e68af9bd521c60 (patch)
tree096f3ca51ee22d12ccc3d59e2c449481ca8c1b6b
parentd83211722e9ba6543bec65745f371423c3da9b9b (diff)
downloadmpv-5c630c96cd9fdfdd33c85706b2e68af9bd521c60.tar.bz2
mpv-5c630c96cd9fdfdd33c85706b2e68af9bd521c60.tar.xz
options: rename --no-sound to --no-audio
-rw-r--r--cfg-mplayer.h2
-rw-r--r--mplayer.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/cfg-mplayer.h b/cfg-mplayer.h
index af1beb9a41..820634db6d 100644
--- a/cfg-mplayer.h
+++ b/cfg-mplayer.h
@@ -502,7 +502,7 @@ const m_option_t common_opts[] = {
OPT_FLAG_CONSTANTS("no-sub", sub_id, 0, -1, -2),
OPT_FLAG_CONSTANTS("no-video", video_id, 0, -1, -2),
OPT_FLAG_CONSTANTS("sound", audio_id, 0, -2, -1),
- OPT_FLAG_CONSTANTS("no-sound", audio_id, 0, -1, -2),
+ OPT_FLAG_CONSTANTS("no-audio", audio_id, 0, -1, -2),
OPT_STRINGLIST("alang", audio_lang, 0),
OPT_STRINGLIST("slang", sub_lang, 0),
diff --git a/mplayer.c b/mplayer.c
index cc89e1aaee..ef352ad34f 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -224,7 +224,7 @@ static const char help_text[] = _(
"- Playing from a slow network source.\n"\
" Download the file instead.\n"\
"- Try to find out whether audio or video is causing this by experimenting\n"\
-" with --no-video and --no-sound.\n"\
+" with --no-video and --no-audio.\n"\
"If none of this helps you, file a bug report.\n\n")