early-access version 2877

main
pineappleEA 2022-07-30 19:55:25 +02:00
parent 8e26e63d7c
commit 7b69f77b50
2 changed files with 3 additions and 1 deletions

View File

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

View File

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