diff options
author | Andrea Pappacoda <andrea@pappacoda.it> | 2022-09-23 13:38:23 +0200 |
---|---|---|
committer | Andrea Pappacoda <andrea@pappacoda.it> | 2022-09-23 13:38:23 +0200 |
commit | 4a493cb10f123f5cf2911cfcb1c30b411b21d092 (patch) | |
tree | 3136bd180d0dbacd52c020eedea83c9a267c1dba /src/shader_recompiler/backend/glsl | |
parent | 8d4458ef24e473e57b9931d7a9d1442b51fb0b1a (diff) |
chore: fix some typos
Fix some typos reported by Lintian
Diffstat (limited to 'src/shader_recompiler/backend/glsl')
-rw-r--r-- | src/shader_recompiler/backend/glsl/emit_glsl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/backend/glsl/emit_glsl.cpp b/src/shader_recompiler/backend/glsl/emit_glsl.cpp index 76c18e4886..e8a4390f69 100644 --- a/src/shader_recompiler/backend/glsl/emit_glsl.cpp +++ b/src/shader_recompiler/backend/glsl/emit_glsl.cpp @@ -101,7 +101,7 @@ bool IsReference(IR::Inst& inst) { } void PrecolorInst(IR::Inst& phi) { - // Insert phi moves before references to avoid overwritting other phis + // Insert phi moves before references to avoid overwriting other phis const size_t num_args{phi.NumArgs()}; for (size_t i = 0; i < num_args; ++i) { IR::Block& phi_block{*phi.PhiBlock(i)}; |