2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

gl_shader_decompiler: Fix gl_PointSize redeclaration

This commit is contained in:
ReinUsesLisp 2019-07-11 16:10:59 -03:00
parent aca40de224
commit 0eb0c24269

View file

@ -310,7 +310,7 @@ private:
} }
if (ir.UsesPointSize()) { if (ir.UsesPointSize()) {
code.AddLine("int gl_PointSize;"); code.AddLine("float gl_PointSize;");
} }
--code.scope; --code.scope;