early-access version 2878

main
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
=============
This is the source code for early-access 2877.
This is the source code for early-access 2878.
## Legal Notice

View File

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