1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-19 01:47:38 +00:00

vo_gpu: fix --opengl-gamma redirect

It still pointed at --gpu-gamma, but we decided on --gamma-factor
instead.
This commit is contained in:
Niklas Haas 2017-09-28 17:21:56 +02:00
parent 791b9c4024
commit 07fa5c8a8f

View File

@ -409,7 +409,7 @@ const struct m_sub_options gl_video_conf = {
OPT_REPLACED("opengl-tex-pad-y", "gpu-tex-pad-y"), OPT_REPLACED("opengl-tex-pad-y", "gpu-tex-pad-y"),
OPT_REPLACED("opengl-fbo-format", "fbo-format"), OPT_REPLACED("opengl-fbo-format", "fbo-format"),
OPT_REPLACED("opengl-dumb-mode", "gpu-dumb-mode"), OPT_REPLACED("opengl-dumb-mode", "gpu-dumb-mode"),
OPT_REPLACED("opengl-gamma", "gpu-gamma"), OPT_REPLACED("opengl-gamma", "gamma-factor"),
{0} {0}
}, },
.size = sizeof(struct gl_video_opts), .size = sizeof(struct gl_video_opts),