summaryrefslogtreecommitdiffstats
path: root/cfg-mplayer.h
diff options
context:
space:
mode:
authorUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-24 06:58:16 +0300
committerUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-25 03:34:27 +0300
commit41d6879236d2792300c57fc9825878ba4f634edd (patch)
tree9337292455a56327674a442018dcf1597f1b549d /cfg-mplayer.h
parent342ae8d3b5597d59e6a3650ca78ed7f1eb070c4e (diff)
downloadmpv-41d6879236d2792300c57fc9825878ba4f634edd.tar.bz2
mpv-41d6879236d2792300c57fc9825878ba4f634edd.tar.xz
Move fullscreen to options struct
Diffstat (limited to 'cfg-mplayer.h')
-rw-r--r--cfg-mplayer.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/cfg-mplayer.h b/cfg-mplayer.h
index 20276742e3..398e9100ab 100644
--- a/cfg-mplayer.h
+++ b/cfg-mplayer.h
@@ -25,7 +25,6 @@ extern char *vo_geometry;
extern int opt_screen_size_x;
extern int opt_screen_size_y;
-extern int fullscreen;
extern int vidmode;
extern char *ao_outputfilename;
@@ -179,8 +178,8 @@ const m_option_t mplayer_opts[]={
{"vm", &vidmode, CONF_TYPE_FLAG, 0, 0, 1, NULL},
{"novm", &vidmode, CONF_TYPE_FLAG, 0, 1, 0, NULL},
// start in fullscreen mode:
- {"fs", &fullscreen, CONF_TYPE_FLAG, 0, 0, 1, NULL},
- {"nofs", &fullscreen, CONF_TYPE_FLAG, 0, 1, 0, NULL},
+ OPT_FLAG_ON("fs", fullscreen, 0),
+ OPT_FLAG_OFF("nofs", fullscreen, 0),
// set fullscreen switch method (workaround for buggy WMs)
{"fsmode", "-fsmode is obsolete, avoid it and use -fstype instead.\nIf you really want it, try -fsmode-dontuse, but don't report bugs!\n", CONF_TYPE_PRINT, CONF_RANGE, 0, 31, NULL},
{"fsmode-dontuse", &vo_fsmode, CONF_TYPE_INT, CONF_RANGE, 0, 31, NULL},