summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-10-20 20:22:16 +0200
committerLioncash <mathew1800@gmail.com>2018-10-20 20:22:37 +0200
commit381baf783d39330007e75e409aee2fc685e95c01 (patch)
tree4f9d8919a558d71605f1f0d628b68f8e435ded99 /src
parentgl_shader_decompiler: Fix a few comment typos (diff)
downloadyuzu-381baf783d39330007e75e409aee2fc685e95c01.tar
yuzu-381baf783d39330007e75e409aee2fc685e95c01.tar.gz
yuzu-381baf783d39330007e75e409aee2fc685e95c01.tar.bz2
yuzu-381baf783d39330007e75e409aee2fc685e95c01.tar.lz
yuzu-381baf783d39330007e75e409aee2fc685e95c01.tar.xz
yuzu-381baf783d39330007e75e409aee2fc685e95c01.tar.zst
yuzu-381baf783d39330007e75e409aee2fc685e95c01.zip
Diffstat (limited to 'src')
-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:
Tegra::Shader::VmadType type, u64 byte_height) {
const std::string value = [&]() {
if (!is_chunk) {
- const auto offset = static_cast<u32>(byte_height * 8);
- return "((" + op + " >> " + std::to_string(offset) + ") & 0xff)";
+ const auto shift = static_cast<u32>(byte_height * 8);
+ return "((" + op + " >> " + std::to_string(shift) + ") & 0xff)";
}
const std::string zero = "0";