summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_opengl/gl_shader_decompiler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp
index 0e9c3e990..f9ef9d194 100644
--- a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp
+++ b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp
@@ -3308,8 +3308,8 @@ private:
3308 Tegra::Shader::VmadType type, u64 byte_height) { 3308 Tegra::Shader::VmadType type, u64 byte_height) {
3309 const std::string value = [&]() { 3309 const std::string value = [&]() {
3310 if (!is_chunk) { 3310 if (!is_chunk) {
3311 const auto offset = static_cast<u32>(byte_height * 8); 3311 const auto shift = static_cast<u32>(byte_height * 8);
3312 return "((" + op + " >> " + std::to_string(offset) + ") & 0xff)"; 3312 return "((" + op + " >> " + std::to_string(shift) + ") & 0xff)";
3313 } 3313 }
3314 const std::string zero = "0"; 3314 const std::string zero = "0";
3315 3315