diff options
author | Viktor Szépe <viktor@szepe.net> | 2024-01-07 23:15:38 +0000 |
---|---|---|
committer | Viktor Szépe <viktor@szepe.net> | 2024-01-07 23:15:38 +0000 |
commit | a959fb011f46e119904f1f84061d95df3115f434 (patch) | |
tree | 03b7260a1deb7ee2f15d4813b6151296616f0cd9 /src/shader_recompiler/ir_opt/constant_propagation_pass.cpp | |
parent | 53085a45e0b2cc995f4056de40116a66f7ae7c08 (diff) |
Fix "Propietary" typo elsewhere
Diffstat (limited to 'src/shader_recompiler/ir_opt/constant_propagation_pass.cpp')
-rw-r--r-- | src/shader_recompiler/ir_opt/constant_propagation_pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/ir_opt/constant_propagation_pass.cpp b/src/shader_recompiler/ir_opt/constant_propagation_pass.cpp index e4a73a360a..12d7b2d7fa 100644 --- a/src/shader_recompiler/ir_opt/constant_propagation_pass.cpp +++ b/src/shader_recompiler/ir_opt/constant_propagation_pass.cpp @@ -1084,7 +1084,7 @@ void ConstantPropagation(Environment& env, IR::Block& block, IR::Inst& inst) { if (env.HasHLEMacroState()) { FoldConstBuffer(env, block, inst); } - if (env.IsPropietaryDriver()) { + if (env.IsProprietaryDriver()) { FoldDriverConstBuffer(env, block, inst, 1); } break; |