mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-24 16:05:46 +00:00
renderer_opengl/gl_shader_decompiler: Remove redundant name specification in format string
This accidentally slipped through a rebase.
This commit is contained in:
parent
2a0c0c04cf
commit
2bcec58614
1 changed files with 1 additions and 1 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue