diff options
| author | 2021-05-17 04:44:13 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:31 -0400 | |
| commit | f1b334b9f950fa58e2cb0e27574b06a0622a99f6 (patch) | |
| tree | 4656fa52889a0760454b9eaebdb7a2d29d86ff9c /src/shader_recompiler/backend/glasm | |
| parent | glasm: Implement TEX and TEXS instructions (diff) | |
| download | yuzu-f1b334b9f950fa58e2cb0e27574b06a0622a99f6.tar.gz yuzu-f1b334b9f950fa58e2cb0e27574b06a0622a99f6.tar.xz yuzu-f1b334b9f950fa58e2cb0e27574b06a0622a99f6.zip | |
glasm: Remove unintentional comma on vector insert
Diffstat (limited to 'src/shader_recompiler/backend/glasm')
| -rw-r--r-- | src/shader_recompiler/backend/glasm/emit_glasm_composite.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_glasm_composite.cpp b/src/shader_recompiler/backend/glasm/emit_glasm_composite.cpp index 22321f386..d829f05b3 100644 --- a/src/shader_recompiler/backend/glasm/emit_glasm_composite.cpp +++ b/src/shader_recompiler/backend/glasm/emit_glasm_composite.cpp | |||
| @@ -52,7 +52,7 @@ void CompositeInsert(EmitContext& ctx, IR::Inst& inst, Register composite, Objec | |||
| 52 | // The input composite is not aliased with the return value so we have to copy it before | 52 | // The input composite is not aliased with the return value so we have to copy it before |
| 53 | // hand. But the insert object is not aliased with the return value, so we don't have to | 53 | // hand. But the insert object is not aliased with the return value, so we don't have to |
| 54 | // worry about that | 54 | // worry about that |
| 55 | ctx.Add("MOV.{} {},{};MOV.{},{}.{},{};", type, ret, composite, type, ret, swizzle, object); | 55 | ctx.Add("MOV.{} {},{};MOV.{} {}.{},{};", type, ret, composite, type, ret, swizzle, object); |
| 56 | } else { | 56 | } else { |
| 57 | // The return value is alised so we can just insert the object, it doesn't matter if it's | 57 | // The return value is alised so we can just insert the object, it doesn't matter if it's |
| 58 | // aliased | 58 | // aliased |