summaryrefslogtreecommitdiffstats
path: root/command.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-28 18:28:17 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-28 18:28:17 +0000
commit69cbd37807f3fea987fd78743d55dcd4f750bd97 (patch)
tree51100b3f96c5618ddd351e352d9edf1cf1d0cabb /command.c
parentbc02e855c3db3a0c575045e48101a4e62c8b1210 (diff)
downloadmpv-69cbd37807f3fea987fd78743d55dcd4f750bd97.tar.bz2
mpv-69cbd37807f3fea987fd78743d55dcd4f750bd97.tar.xz
Simplify a condition that probably is not necessary at all
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25906 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'command.c')
-rw-r--r--command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/command.c b/command.c
index d6082a5ad3..a030c280d4 100644
--- a/command.c
+++ b/command.c
@@ -1483,7 +1483,7 @@ static int mp_property_sub(m_option_t * prop, int action, void *arg,
if (sh->type == 'v')
init_vo_spudec();
#ifdef USE_ASS
- else if (ass_enabled && (sh->type == 'a' || sh->type == 't'))
+ else if (ass_enabled)
ass_track = sh->ass_track;
#endif
} else {