Fix an accidental wrong escape sequence in the OSD shader. \n\; will escape the ';', which is wrong, since there's no existing escape sequence for that anyway.
This commit is contained in:
parent
c6e1d41b20
commit
3fe15366ab
|
@ -304,7 +304,7 @@ void main() \n\
|
||||||
{ \n\
|
{ \n\
|
||||||
mediump vec2 uv=vtx_uv; \n\
|
mediump vec2 uv=vtx_uv; \n\
|
||||||
uv.y=1.0-uv.y; \n\
|
uv.y=1.0-uv.y; \n\
|
||||||
gl_FragColor=vtx_base*texture2D(tex,uv); \n\; \n\
|
gl_FragColor=vtx_base*texture2D(tex,uv); \n\n\
|
||||||
}";
|
}";
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue