diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/options.c | 4 | ||||
-rw-r--r-- | core/options.h | 2 |
2 files changed, 0 insertions, 6 deletions
diff --git a/core/options.c b/core/options.c index 2fa6e319ab..cce36b90bb 100644 --- a/core/options.c +++ b/core/options.c @@ -557,8 +557,6 @@ const m_option_t mp_opts[] = { OPT_FLAG("fs", vo.fullscreen, 0), // set fullscreen switch method (workaround for buggy WMs) OPT_INTRANGE("fsmode-dontuse", vo.fsmode, 0, 31, 4096), - OPT_INT("colorkey", vo.colorkey, 0), - OPT_FLAG_STORE("no-colorkey", vo.colorkey, 0, 0x1000000), OPT_FLAG("native-keyrepeat", vo.native_keyrepeat, 0), OPT_FLOATRANGE("panscan", vo.panscan, 0, 0.0, 1.0), OPT_FLOATRANGE("panscanrange", vo.panscanrange, 0, -19.0, 99.0), @@ -739,8 +737,6 @@ const struct MPOpts mp_default_opts = { .panscan = 0.0f, .keepaspect = 1, .border = 1, - .colorkey = 0x0000ff00, // default colorkey is green - // (0xff000000 means that colorkey has been disabled) .WinID = -1, }, .wintitle = "mpv - ${media-title}", diff --git a/core/options.h b/core/options.h index 212c3c79c9..e7f04b548c 100644 --- a/core/options.h +++ b/core/options.h @@ -29,8 +29,6 @@ typedef struct mp_vo_opts { int keepaspect; int border; - int colorkey; - int nomouse_input; int enable_mouse_movements; int cursor_autohide_delay; |