From 00230fab6ae04a5e1929a8d237fc27b47d231c3d Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 30 Mar 2015 23:58:39 +0200 Subject: options: make --video-rotate use range 0-360 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Include 360 in the range and don't stop at 359. This makes cycling through the range in 90° steps less awkward. --- options/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'options') diff --git a/options/options.c b/options/options.c index 4e01ae27cf..e2a17382d9 100644 --- a/options/options.c +++ b/options/options.c @@ -424,7 +424,7 @@ const m_option_t mp_opts[] = { OPT_FLOATRANGE("video-align-y", vo.align_y, 0, -1.0, 1.0), OPT_FLAG("video-unscaled", vo.unscaled, 0), OPT_FLAG("force-rgba-osd-rendering", force_rgba_osd, 0), - OPT_CHOICE_OR_INT("video-rotate", video_rotate, 0, 0, 359, + OPT_CHOICE_OR_INT("video-rotate", video_rotate, 0, 0, 360, ({"no", -1})), OPT_VID_STEREO_MODE("video-stereo-mode", video_stereo_mode, 0), -- cgit v1.2.3