summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBilly Laws <blaws05@gmail.com>2023-01-07 19:38:21 +0100
committerGitHub <noreply@github.com>2023-01-07 19:38:21 +0100
commitd34275a260a2d2ccff3ddd971552c95f69b73e12 (patch)
tree1043be28e9536446d10074982581758b66ff3a24
parentMerge pull request #9570 from liamwhite/less-clock-boost (diff)
downloadyuzu-d34275a260a2d2ccff3ddd971552c95f69b73e12.tar
yuzu-d34275a260a2d2ccff3ddd971552c95f69b73e12.tar.gz
yuzu-d34275a260a2d2ccff3ddd971552c95f69b73e12.tar.bz2
yuzu-d34275a260a2d2ccff3ddd971552c95f69b73e12.tar.lz
yuzu-d34275a260a2d2ccff3ddd971552c95f69b73e12.tar.xz
yuzu-d34275a260a2d2ccff3ddd971552c95f69b73e12.tar.zst
yuzu-d34275a260a2d2ccff3ddd971552c95f69b73e12.zip
-rw-r--r--src/shader_recompiler/frontend/maxwell/translate_program.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate_program.cpp b/src/shader_recompiler/frontend/maxwell/translate_program.cpp
index a3b99e24d..a42453e90 100644
--- a/src/shader_recompiler/frontend/maxwell/translate_program.cpp
+++ b/src/shader_recompiler/frontend/maxwell/translate_program.cpp
@@ -259,7 +259,7 @@ IR::Program TranslateProgram(ObjectPool<IR::Inst>& inst_pool, ObjectPool<IR::Blo
program.is_geometry_passthrough = sph.common0.geometry_passthrough != 0;
if (program.is_geometry_passthrough) {
const auto& mask{env.GpPassthroughMask()};
- for (size_t i = 0; i < program.info.passthrough.mask.size(); ++i) {
+ for (size_t i = 0; i < mask.size() * 32; ++i) {
program.info.passthrough.mask[i] = ((mask[i / 32] >> (i % 32)) & 1) == 0;
}