diff options
author | Lioncash <mathew1800@gmail.com> | 2019-05-21 15:45:39 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-05-21 15:47:21 +0200 |
commit | de238471848c05ec693bf027ea8ff22434f584b8 (patch) | |
tree | 88c398e6b29f46f2cfb56f748303446285576856 | |
parent | Merge pull request #2455 from lioncash/config (diff) | |
download | yuzu-de238471848c05ec693bf027ea8ff22434f584b8.tar yuzu-de238471848c05ec693bf027ea8ff22434f584b8.tar.gz yuzu-de238471848c05ec693bf027ea8ff22434f584b8.tar.bz2 yuzu-de238471848c05ec693bf027ea8ff22434f584b8.tar.lz yuzu-de238471848c05ec693bf027ea8ff22434f584b8.tar.xz yuzu-de238471848c05ec693bf027ea8ff22434f584b8.tar.zst yuzu-de238471848c05ec693bf027ea8ff22434f584b8.zip |
-rw-r--r-- | src/video_core/renderer_opengl/gl_shader_decompiler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp index 4c380677d..6d4658c8b 100644 --- a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp +++ b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp @@ -371,7 +371,7 @@ private: location += GENERIC_VARYING_START_LOCATION; } - code.AddLine("layout (location = {}) {} in vec4 {};", name, location, suffix, name); + code.AddLine("layout (location = {}) {} in vec4 {};", location, suffix, name); } void DeclareOutputAttributes() { |