early-access version 2878

This commit is contained in:
pineappleEA 2022-07-31 05:03:19 +02:00
parent 7b69f77b50
commit 6aae06d030
2 changed files with 1 additions and 2 deletions

View file

@ -1,7 +1,7 @@
yuzu emulator early access yuzu emulator early access
============= =============
This is the source code for early-access 2877. This is the source code for early-access 2878.
## Legal Notice ## Legal Notice

View file

@ -18,7 +18,6 @@ static OGLProgram LinkSeparableProgram(GLuint shader) {
glAttachShader(program.handle, shader); glAttachShader(program.handle, shader);
glLinkProgram(program.handle); glLinkProgram(program.handle);
glDetachShader(program.handle, shader); glDetachShader(program.handle, shader);
glDeleteShader(shader);
if (!Settings::values.renderer_debug) { if (!Settings::values.renderer_debug) {
return program; return program;
} }