summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/backend/glasm/emit_context.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader_recompiler/backend/glasm/emit_context.cpp')
-rw-r--r--src/shader_recompiler/backend/glasm/emit_context.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_context.cpp b/src/shader_recompiler/backend/glasm/emit_context.cpp
index 66c954ff6..4903e9d8e 100644
--- a/src/shader_recompiler/backend/glasm/emit_context.cpp
+++ b/src/shader_recompiler/backend/glasm/emit_context.cpp
@@ -71,7 +71,7 @@ EmitContext::EmitContext(IR::Program& program) {
71 if (index == 0) { 71 if (index == 0) {
72 Add("OUTPUT frag_color0=result.color;"); 72 Add("OUTPUT frag_color0=result.color;");
73 } else { 73 } else {
74 Add("OUTPUT frag_color{}[]=result.color[{}];", index, index); 74 Add("OUTPUT frag_color{}=result.color[{}];", index, index);
75 } 75 }
76 } 76 }
77 for (size_t index = 0; index < program.info.stores_generics.size(); ++index) { 77 for (size_t index = 0; index < program.info.stores_generics.size(); ++index) {