summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-01-23 10:57:02 +0100
committerwm4 <wm4@nowhere>2013-01-23 10:57:02 +0100
commit2131bdf5b75fe11ed2e97958cbb5d4b00262db16 (patch)
tree96db3d715e745c596c0686eb7c213df68ff5d3a0 /core
parent704c0cb2db7d20adc5b744b9714fed60642d8e5c (diff)
downloadmpv-2131bdf5b75fe11ed2e97958cbb5d4b00262db16.tar.bz2
mpv-2131bdf5b75fe11ed2e97958cbb5d4b00262db16.tar.xz
options: make --fullscreen not a global option
This was disabled in 4ea60a3 and 70c455a, when all options were still forced file local, and resetting fullscreen was annoyingly reset when switching to the next file. mpv keeps all options by default, so this isn't needed anymore.
Diffstat (limited to 'core')
-rw-r--r--core/cfg-mplayer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/cfg-mplayer.h b/core/cfg-mplayer.h
index fed5d999e2..1cb10d3463 100644
--- a/core/cfg-mplayer.h
+++ b/core/cfg-mplayer.h
@@ -594,8 +594,8 @@ const m_option_t mplayer_opts[]={
// video mode switching: (x11,xv,dga)
OPT_MAKE_FLAGS("vm", vidmode, 0),
// start in fullscreen mode:
- OPT_MAKE_FLAGS("fullscreen", fullscreen, CONF_GLOBAL),
- OPT_MAKE_FLAGS("fs", fullscreen, CONF_GLOBAL),
+ OPT_MAKE_FLAGS("fullscreen", fullscreen, 0),
+ OPT_MAKE_FLAGS("fs", fullscreen, 0),
// set fullscreen switch method (workaround for buggy WMs)
{"fsmode-dontuse", &vo_fsmode, CONF_TYPE_INT, CONF_RANGE, 0, 31, NULL},
// set bpp (x11+vm)