mirror of https://github.com/mpv-player/mpv
gl_video: remove double const qualifier
This fixes a warning when compiling with clang.
This commit is contained in:
parent
042ac56226
commit
e31567fe41
|
@ -224,7 +224,7 @@ static const char *osd_shaders[SUBBITMAP_COUNT] = {
|
|||
[SUBBITMAP_RGBA] = "frag_osd_rgba",
|
||||
};
|
||||
|
||||
static const const struct gl_video_opts gl_video_opts_def = {
|
||||
static const struct gl_video_opts gl_video_opts_def = {
|
||||
.npot = 1,
|
||||
.dither_depth = -1,
|
||||
.fbo_format = GL_RGB,
|
||||
|
|
Loading…
Reference in New Issue