summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-03-17 18:30:26 +0100
committerwm4 <wm4@nowhere>2014-03-17 18:30:43 +0100
commit2a20a5b0c977a8273f8ff637921493f1ad013758 (patch)
treeacab3da014f6ec16b7c63ca34f0da87b17204194 /options
parentf811d430618b5d4ca99476080ce95a1723350e54 (diff)
downloadmpv-2a20a5b0c977a8273f8ff637921493f1ad013758.tar.bz2
mpv-2a20a5b0c977a8273f8ff637921493f1ad013758.tar.xz
options: fix allowed DVD start title
Diffstat (limited to 'options')
-rw-r--r--options/parse_commandline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/parse_commandline.c b/options/parse_commandline.c
index 6cd27eb282..8db144241e 100644
--- a/options/parse_commandline.c
+++ b/options/parse_commandline.c
@@ -38,7 +38,7 @@
#define GLOBAL 0
#define LOCAL 1
-#define dvd_range(a) (a > 0 && a < 256)
+#define dvd_range(a) (a >= 0 && a < 255)
struct parse_state {