diff options
| author | 2019-05-21 09:45:39 -0400 | |
|---|---|---|
| committer | 2019-05-21 09:47:21 -0400 | |
| commit | de238471848c05ec693bf027ea8ff22434f584b8 (patch) | |
| tree | 88c398e6b29f46f2cfb56f748303446285576856 /src | |
| parent | Merge pull request #2455 from lioncash/config (diff) | |
| download | yuzu-de238471848c05ec693bf027ea8ff22434f584b8.tar.gz yuzu-de238471848c05ec693bf027ea8ff22434f584b8.tar.xz yuzu-de238471848c05ec693bf027ea8ff22434f584b8.zip | |
renderer_opengl/gl_shader_decompiler: Remove redundant name specification in format string
This accidentally slipped through a rebase.
Diffstat (limited to 'src')
| -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: | |||
| 371 | location += GENERIC_VARYING_START_LOCATION; | 371 | location += GENERIC_VARYING_START_LOCATION; |
| 372 | } | 372 | } |
| 373 | 373 | ||
| 374 | code.AddLine("layout (location = {}) {} in vec4 {};", name, location, suffix, name); | 374 | code.AddLine("layout (location = {}) {} in vec4 {};", location, suffix, name); |
| 375 | } | 375 | } |
| 376 | 376 | ||
| 377 | void DeclareOutputAttributes() { | 377 | void DeclareOutputAttributes() { |