diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-09-24 04:55:25 +0200 |
---|---|---|
committer | FernandoS27 <fsahmkow27@gmail.com> | 2019-10-25 15:01:31 +0200 |
commit | 1244f2d368076aec61327ee1440c5efd9ae046d6 (patch) | |
tree | 8e373a95aa97723489479b53c7f33fd3547536d2 | |
parent | Shader_IR: Correct typo in Consistent method. (diff) | |
download | yuzu-1244f2d368076aec61327ee1440c5efd9ae046d6.tar yuzu-1244f2d368076aec61327ee1440c5efd9ae046d6.tar.gz yuzu-1244f2d368076aec61327ee1440c5efd9ae046d6.tar.bz2 yuzu-1244f2d368076aec61327ee1440c5efd9ae046d6.tar.lz yuzu-1244f2d368076aec61327ee1440c5efd9ae046d6.tar.xz yuzu-1244f2d368076aec61327ee1440c5efd9ae046d6.tar.zst yuzu-1244f2d368076aec61327ee1440c5efd9ae046d6.zip |
-rw-r--r-- | src/video_core/shader/ast.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/shader/ast.cpp b/src/video_core/shader/ast.cpp index 2fa3a3f7d..3f96d9076 100644 --- a/src/video_core/shader/ast.cpp +++ b/src/video_core/shader/ast.cpp @@ -228,7 +228,7 @@ public: inner += expr.value ? "true" : "false"; } - void operator()(ExprGprEqual const& expr) { + void operator()(const ExprGprEqual& expr) { inner += "( gpr_" + std::to_string(expr.gpr) + " == " + std::to_string(expr.value) + ')'; } |